-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
27 lines (23 loc) · 942 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
from setuptools import setup, find_packages
from os import path
def parse_requirements(filename):
with open(filename, "r") as f:
return f.read().splitlines()
setup(
name="DatabankLib",
version="1.1.0", # should agree with git tag!
package_dir={"": "Scripts"},
packages=find_packages(where="Scripts"), # Automatically list packages
install_requires=parse_requirements(
path.join('.', 'Scripts', 'DatabankLib', 'requirements.txt')),
author="NMRlipids open collaboration", # Your name or organization
author_email="[email protected]",
description="NMRLipid databank main package",
url="https://github.com/NMRlipids/Databank",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.7"
)