-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
66 lines (58 loc) · 1.87 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from pathlib import Path
from setuptools import setup
def read(file_name):
with open(
os.path.join(
Path(os.path.dirname(__file__)),
file_name)
) as _file:
return _file.read()
long_description = read('README.md')
setup(
name='auto_annotate',
version='1.0.5',
description='Generate xml annotations for TensorFlow object detection models.',
url='https://github.com/AlvaroCavalcante/auto_annotate',
download_url='https://github.com/AlvaroCavalcante/auto_annotate',
license='Apache License 2.0',
author='Alvaro Leandro Cavalcante Carneiro',
author_email='[email protected]',
py_modules=['auto_annotate', 'label_map_util', 'generate_xml'],
packages=['protos'],
package_dir={'': 'src'},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
'tensorflow',
'python',
'python3',
'object-detection',
'annotation',
'dataset',
'semi-supervised',
'deep-learning',
'labeling'
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.8',
install_requires=[
'numpy==1.26.3',
'tensorflow==2.11.1',
'tqdm==4.66.1',
'Pillow==10.0.1',
'six==1.16.0'
]
)