forked from Galithil/lims_dashboard
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (43 loc) · 1.47 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
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
import sys, os
import subprocess
import glob
version_py = os.path.join(os.path.dirname(__file__), 'version.py')
with open(version_py, 'r') as fh:
version_git = open(version_py).read().strip().split('=')[-1].replace('"','')
try:
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
except IOError:
install_requires = [
"flask",
"pytest"]
setup(name='lims_dashboard',
version=version_git,
description="Dashboard wepapp to interact with Genologics LIMS",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python"
],
keywords='Genologics lims illumina EPP',
author='Denis Moreno',
author_email='[email protected]',
maintainer='Denis Moreno',
maintainer_email='[email protected]',
url='https://github.com/Galithil/lims_dashboard',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
scripts=glob.glob("scripts/*.py"),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
# -*- Entry points: -*-
""",
)