-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.33 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
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as version_file:
version = version_file.read().strip()
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setuptools.setup(
name='labinform',
version=version,
description='Framework for reproducible research.',
long_description=readme,
long_description_content_type='text/x-rst',
author='Till Biskup',
author_email='[email protected]',
url='https://www.labinform.de/',
project_urls={
'Documentation': 'https://docs.labinform.de/',
'Source': 'https://github.com/tillbiskup/labinform',
},
packages=setuptools.find_packages(exclude=('tests', 'docs')),
keywords=[
'Reproducible research',
'Electronic Lab Notebook',
'ELN',
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
],
install_requires=[
],
python_requires='>=3.5',
)