-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (26 loc) · 910 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
25
26
from distutils.core import setup
setup(
name = 'polyproto',
packages = ['polyproto'],
version = '0.1',
license='MIT',
description = 'generator using polygons for testing a Keras CNN',
author = 'kevin',
author_email = '[email protected]',
url = 'https://github.com/kevinkit/polyproto',
download_url = 'https://github.com/kevinkit/polyproto/archive/v_01.tar.gz', # I explain this later on
keywords = ['testing', 'keras', 'tensorflow','CNN'],
install_requires=[ # I get to this in a second
'keras',
'opencv-python',
'tensorflow',
'numpy'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3',
],
)