-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.04 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.04 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
from setuptools import setup
from setuptools import find_packages
setup(name='pyDD',
version='0.1.3',
description='Python binding for DeepDetect',
author='Ardalan MEHRANI',
author_email='ardalan77400@gmail.com',
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(),
entry_points={
'console_scripts': [
'pydd = pydd.utils.viz:main'
]},
)