forked from ArdalanM/pyDD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 953 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
from setuptools import setup
from setuptools import find_packages
setup(name='pyDD',
version='0.1.2',
description='Python binding for DeepDetect',
author='Ardalan MEHRANI',
author_email='[email protected]',
url='https://github.com/ArdalanM/pyDD',
download_url='https://github.com/ArdalanM/pyDD',
license='MIT',
classifiers=['License :: MIT License',
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=[],
extras_require={},
packages=find_packages())