-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
33 lines (30 loc) · 925 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
27
28
29
30
31
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
project_name = "neurophox"
requirements = [
"numpy>=1.16",
"scipy",
"tensorflow>=2.0",
"torch>=1.3"
]
setup(
name=project_name,
version="0.1.0-beta.0",
packages=find_packages(),
description='A simulation framework for unitary neural networks and photonic devices',
author='Sunil Pai',
author_email='sunilpai@stanford.edu',
license='MIT',
url="https://github.com/solgaardlab/neurophox",
classifiers=(
'Development Status :: 3 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
install_requires=requirements
)