-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (38 loc) · 1.17 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
40
from setuptools import setup
import versioneer
requirements = [
'tensorflow>=2.0',
'numpy',
'pandas', 'scipy', # Data
'colorlog', 'openpyxl', # Logging
'tqdm'
]
setup(
name='cvnn',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Library to help implement a complex-valued neural network (cvnn) using tensorflow as back-end",
license="MIT",
author="J Agustin BARRACHINA",
author_email='[email protected]',
url='https://github.com/NEGU93/cvnn',
packages=['cvnn'],
entry_points={
'console_scripts': [
'cvnn=cvnn.cli:cli'
]
},
install_requires=requirements,
keywords='cvnn',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
extras_require={
'plotter': ['matplotlib', 'seaborn', 'plotly', 'tikzplotlib'],
'full': ['prettytable', 'matplotlib', 'seaborn', 'plotly', 'tikzplotlib']
}
)