forked from mayabrandi/LIMS2DB
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (21 loc) · 773 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
from setuptools import setup, find_packages
import sys
import os
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 = "[email protected], [email protected]",
description = "Fetching data from Genologics LIMS and pushing it to statusdb",
packages=find_packages(),
scripts = glob.glob('scripts/*.py'))
from LIMS2DB.objectsDB import make_process_category_doc
make_process_category_doc.make_doc()