forked from bigsnarfdude/Faster-RCNN_TF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.18 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
from setuptools import setup
from setuptools import find_packages
def read_readme():
with open('README.md') as f:
return f.read()
setup(
name='faster_rcnn_tf',
version='1.2.0',
license='MIT',
description='Module to load Faster RCNN TF capabilities',
long_description=read_readme(),
url='https://github.com/bbouffaut/Faster-RCNN_TF',
author='Fork from bigsnarfdude',
author_email='baptiste.bouffaut@gmail.com',
keywords='tensorflow Convutional Neural-Network ',
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: System :: Monitoring',
],
packages=find_packages(),
#packages=['faster_rcnn_tf'],
#py_modules=['faster_rcnn_tf'],
install_requires=['lib_fast_rcnn'
],
test_suite='',
tests_require=[],
entry_points={
'console_scripts': ['faster_rcnn_tf=faster_rcnn_tf:main'],
},
include_package_data=True,
zip_safe=False,
)