-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (31 loc) · 822 Bytes
/
setup.py
File metadata and controls
31 lines (31 loc) · 822 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
25
26
27
28
29
30
31
import setuptools
setuptools.setup(
name="siren",
version="0.0.0",
author="Laurel Kinman",
author_email="lkinman@mit.edu",
description="Statistical ",
url="https://github.com/lkinman/siren",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'siren = siren.__main__:main',
],
},
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'pandas>=1.1.3',
'numpy>=1.19.2',
'networkx>=2.6.3',
'matplotlib>=3.0.0',
'torch',
'mrcfile',
'natsort',
'PyQt5']
)