forked from NationalGenomicsInfrastructure/LIMS2DB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 697 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
import glob
import subprocess
def get_version():
return "1.0-{}".format(subprocess.check_output(["git", "rev-parse", "HEAD"]))
try:
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
except IOError:
install_requires = []
setup(name = "LIMS2DB",
version = get_version(),
author = "Maya Brandi, Denis Moreno",
author_email = "maya.brandi@scilifelab.se, denis.moreno@scilifelab.se",
description = "Fetching data from Genologics LIMS and pushing it to statusdb",
install_requires = install_requires,
packages=find_packages(),
scripts = glob.glob('scripts/*.py'))