-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (30 loc) · 910 Bytes
/
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
import io
import re
from setuptools import setup, find_packages
# Only packages the trainer and detection packages
REQUIRED_PACKAGES = [
#'click',
'requests',
'numpy',
'mercantile'
]
with io.open('playgroundclient/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(
r'__version__ = \'(.*?)\'', f.read(), re.M).group(1)
setup(
name='playgroundclient',
version=version,
packages=find_packages(),
#entry_points='''
# [console_scripts]
# up42=up42.cli:up42
#''',
description='Intelligence Playground API Python Client',
long_description='A Python client and CLI to interact with the Airbus Intelligence Playground API.',
include_package_data=True,
author='Jeff Faudi',
author_email='[email protected]',
license='LICENSE',
install_requires=REQUIRED_PACKAGES,
python_requires='>=3.6',
zip_safe=False)