-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
44 lines (41 loc) · 1.38 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
41
42
43
44
from setuptools import setup
import versioneer
requirements = [
'tensorflow>=2.0', 'tensorflow-probability[tf]', # tfp for the Batch Norm (covariance)
# 'tensorflow-addons',
'numpy', 'six', 'packaging',
'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', 'cvnn.layers'],
entry_points={
'console_scripts': [
'cvnn=cvnn.cli:cli'
]
},
install_requires=requirements,
keywords='cvnn',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov'],
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']
}
)