forked from Bolton-and-Menk-GIS/restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.57 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
from setuptools import find_packages, setup
#from distutils.core import setup
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
name = 'bmi-arcgis-restapi'
setup(name=name,
version='1.0',
description='Package for working with ArcGIS REST API',
author='Caleb Mackey',
author_email='calebma@bolton-menk.com',
url='https://github.com/Bolton-and-Menk-GIS/restapi',
license='GPL',
packages=find_packages(),
include_package_data=True,
package_data={'restapi': ['shapefile/*.json',
'test/testData/*',
'admin/samples/*.py',
'projections/bin/*']},
install_requires=['munch', 'requests'],
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: GIS'
]
)