-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.4 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.4 KB
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
from setuptools import find_packages, setup
requirements = {
"default": ["tensorflow>=2.4.4", "matplotlib>=2.2.5", "pycocotools>=2.0.2"],
}
def load_readme() -> str:
with open('README.md') as fp:
return fp.read()
setup(
name='easy-efficientdet',
version='0.1.0',
author="Waldemar Meier",
author_email="info@waldemarmeier.com",
url="https://github.com/waldemarmeier/easy-efficientdet",
keywords="object-detection neural-network efficientdet",
packages=find_packages(),
license='Apache 2.0',
python_requires='>=3.7',
install_requires=requirements["default"],
description="Easy to use object detection package based on tensorflow",
long_description=load_readme(),
entry_points={
'console_scripts': [
'generate_tfrecord = easy_efficientdet.tools.generate_tfrecord:main',
'create_labelmap = easy_efficientdet.tools.create_labelmap:main',
'prepare_voc = '
'easy_efficientdet.tools.prepare_voc:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)