-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
41 lines (38 loc) · 1.25 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
def requirements():
with open('requirements.txt') as f:
return f.read().splitlines()
setup(
name='geebam',
version='0.1.5',
packages=['gee_asset_manager'],
package_data={'gee_asset_manager': ['logconfig.json']},
url='https://github.com/tracek/gee_asset_manager',
license='Apache 2.0',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: GIS',
),
author='Lukasz Tracewski',
author_email='[email protected]',
description='Google Earth Engine Batch Assets Manager',
long_description=readme(),
install_requires=requirements(),
entry_points={
'console_scripts': [
'geebam=geebam:main',
],
}
)