-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.1 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
from setuptools import setup, find_packages
__version__ = "0.0.1"
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="kgraph-ts",
version=__version__,
description="kGraph",
classifiers=CLASSIFIERS,
author="Paul Boniol",
author_email="[email protected]",
packages=find_packages(),
zip_safe=True,
license="",
url="https://github.com/boniolp/kGraph",
entry_points={},
install_requires=[
'aeon==0.6.0',
'setuptools>=65.5.1',
'numpy==1.24.4',
'pandas==2.0.3',
'matplotlib==3.7.2',
'scipy==1.11.3',
'scikit-learn==1.2.2',
'networkx==3.1',
]
)