forked from superannotateai/superannotate-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 888 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (26 loc) · 888 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
31
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read()
requirements = requirements.splitlines()
with open('README.md') as f:
readme = f.read()
readme = "\n".join(readme.split('\n')[2:])
packages = find_packages()
setup(
name='superannotate',
version='1.5.13',
description='Python SDK to SuperAnnotate platform',
license='MIT',
author='Hovnatan Karapetyan',
author_email='hovnatan@superannotate.com',
url='https://github.com/superannotateai/superannotate-python-sdk',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=requirements,
setup_requires=['wheel'],
packages=find_packages(exclude=('tests', )),
# entry_points={
# 'console_scripts': ['superannotate = superannotate.__main__:main']
# },
python_requires='>=3.6'
)