-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.29 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="lifelike_gds",
version="0.0.1",
author="Lifelike Team, Ethan Sanchez <https://github.com/esanche06>, Nathan Weinstein <https://github.com/NathanWeinstein>, Dominik Maszczyk <https://github.com/Skitionek>, Alessandro Negro <https://github.com/alenegro81>",
author_email="lifelike@biosustain.dtu.dk",
description="A collection of GDS packages used by the Lifelike application",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SBRG/GDS",
project_urls={
"Bug Tracker": "https://github.com/SBRG/GDS/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.9",
install_requires=[
"pandas~=2.0.3",
"numpy>=1.25.0",
"simplejson~=3.17.5",
"networkx~=2.6.3",
"scipy>=1.9",
"python-arango~=7.6.0",
"xlsxwriter~=3.0.1",
],
package_data={'lifelike_gds': ['**/*.yml']},
include_package_data=True
)