-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 953 Bytes
/
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
from setuptools import setup, find_packages
__version__ = "0.1.1"
# Function to parse requirements.txt
def parse_requirements(filename):
with open(filename, "r") as file:
return [
line.strip() for line in file if line.strip() and not line.startswith("#")
]
setup(
name="phenex",
version=__version__,
author="Bayer AG",
author_email="alexander.hartenstein@bayer.com",
description="PhenEx is a Python package for analysis-ready datasets from real-world data",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Bayer-Group/PhenEx",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.12",
install_requires=parse_requirements("requirements.txt"),
)