-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (45 loc) · 1.41 KB
/
setup.py
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
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
NAME = 'sridentify'
DESCRIPTIOIN = 'Identify the EPSG code from a .prj file'
URL = 'https://github.com/cmollet/sridentify'
EMAIL = '[email protected]'
AUTHOR = 'Cory Mollet'
VERSION = '0.8.0'
with open('README.rst') as readme_file:
readme = readme_file.read()
here = os.path.abspath(os.path.dirname(__file__))
setup(
name=NAME,
version=VERSION,
description=DESCRIPTIOIN,
long_description=readme,
author=AUTHOR,
author_email=EMAIL,
url=URL,
package_data={'sridentify': ['epsg.db']},
license="MIT",
packages=["sridentify"],
test_suite='tests',
entry_points={
'console_scripts': ['sridentify=sridentify.cli:main']
},
keywords='epsg, gis, shapefile, cli',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities',
],
)