-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 827 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 827 Bytes
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
from setuptools import setup, find_packages
setup(
name='gbdx-task-template',
version='0.1.5',
packages=find_packages(),
include_package_data=True,
install_requires=[
'jsonschema==2.4.0',
],
url='https://github.com/michaelconnor00/gbdx-task-template',
license='MIT',
description='GBDX Task Template',
long_description=open('README.rst').read(),
author='GBDX (Michael Connor)',
author_email='mike@sparkgeo.com',
entry_points={},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
],
tests_require=['pytest', 'coverage']
)