forked from SciLifeLab/genologics
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
46 lines (41 loc) · 1.86 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
from os.path import join, abspath, dirname
from setuptools import setup, find_packages
requirements_txt = join(abspath(dirname(__file__)), 'requirements.txt')
requirements = [l.strip() for l in open(requirements_txt) if l and not l.startswith('#')]
version = '0.4.9.dev0'
setup(
name='pyclarity_lims',
version=version,
description="Python interface to the Basespace-Clarity LIMS (Laboratory Information Management System) "
"server via its REST API.",
long_description="""A basic module for interacting with the Basespace-Clarity LIMS server via its REST API.
The goal is to provide simple access to the most common entities and their attributes in
a reasonably Pythonic fashion.""",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Medical Science Apps."
],
keywords='clarity api rest',
author='Per Kraulis',
author_email='[email protected]',
maintainer='Timothee Cezard',
maintainer_email='[email protected]',
url='https://github.com/EdinburghGenomics/pyclarity-lims',
license='GPLv3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'integration_tests']),
include_package_data=True,
zip_safe=False,
install_requires=['requests']
)