forked from DecodEPFL/neurSLS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 656 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import setuptools
import os
os.chmod("run.py", 0o744)
setuptools.setup(
name='neurSLS',
version='1.0',
url='https://github.com/DecodEPFL/neurSLS',
license='CC-BY-4.0 License',
author='Clara Galimberti',
author_email='clara.galimberti@epfl.ch',
description='Neural System Level Synthesis',
packages=setuptools.find_packages(),
install_requires=['torch>=1.7.1',
'numpy>=1.18.1',
'matplotlib>=3.1.3'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.8',
)