-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (41 loc) · 1.41 KB
/
setup.py
File metadata and controls
executable file
·47 lines (41 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""
Setting up program for pyjpmesh.
"""
import os
import setuptools
import jpmesh
def load_long_description():
"""
Load the long description.
"""
readme_file_path = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme_file_path) as readme_file:
return readme_file.read()
setuptools.setup(
name='pyjpmesh',
description='Japan grid square code (JIS X 0410) utility for Python.',
long_description=load_long_description(),
version=jpmesh.__version__,
author=jpmesh.__author__,
author_email=jpmesh.__author_email__,
url='https://github.com/ymoch/pyjpmesh',
py_modules=['jpmesh'],
test_suite='nose.collector',
tests_require=['nose', 'mock'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)