-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 700 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
setup(name='intelligent-creation',
version='0.1',
description='Intelligent creation for python',
author='Ido Aizenbud',
author_email='ido.aizenbud@gmail.com',
url='https://github.com/ido4848/intelligent-creation',
# download_url='https://github.com/fchollet/keras/tarball/2.0.2',
# license='MIT',
# install_requires=['theano', 'pyyaml', 'six'],
# extras_require={
# 'h5py': ['h5py'],
# 'visualize': ['pydot-ng'],
# 'tests': ['pytest',
# 'pytest-pep8',
# 'pytest-xdist'],
# },
packages=find_packages())