-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 915 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 915 Bytes
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
from setuptools import find_packages, setup
release_version = '0.2.0'
setup(
name = 'slims-lisp',
version = release_version,
description = 'A high-level CLI for SlIMS REST API',
long_description = open('README.rst').read(),
long_description_content_type = 'text/x-rst',
license = 'Apache License 2.0',
author = 'Laboratory of Integrative System Physiology (LISP) at EPFL',
author_email = 'alexis.rapin@epfl.ch',
url = 'https://github.com/auwerxlab/slims-lisp-python-api',
download_url = 'https://github.com/auwerxlab/slims-lisp-python-api/archive/v' + release_version + '.tar.gz',
packages = find_packages(),
python_requires = '>=3.5.2',
install_requires = [
'click>=7.0',
'requests>=2.22.0',
'datetime>=4.3',
],
entry_points = {
'console_scripts': [
'slims-lisp = slims_lisp.__main__:cli'
]
},
)