Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
43 lines (39 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (39 loc) · 1 KB
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
importsys
fromsetuptoolsimportfind_packages, setup
ifsys.version_info< (3, 6):
sys.exit("Sorry, Python < 3.6 is not supported.")
try:
long_description=open("README.md").read()
exceptIOError:
long_description=""
setup(
name="CDMIR",
version="0.1.1",
description="A pip package",
license="GPL",
author="DMIRLab",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
'numpy',
'pandas',
'scipy>=1.7.3',
'scikit-learn',
'torch>=1.7.1',
'networkx',
'matplotlib',
],
extra_require={
"hawkes":[
"tick; python_version < '3.12'"
]
},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Operating System :: OS Independent',
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.6',
)