-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (43 loc) · 1.49 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
"""
labnote - HTML lab notebook generator
"""
DOCLINES = __doc__.split("\n")
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
with open('README.rst',encoding='utf8') as file:
long_description = file.read()
setup(
author="Keith Hughitt",
author_email="[email protected]",
classifiers=CLASSIFIERS,
description="Flexible and lightweight tool for generating HTML-based electronic lab notebooks",
long_description=long_description,
install_requires=['beautifulsoup4', 'jinja2', 'PyYAML', 'setuptools-git'],
setup_requires=['pytest-runner'],
tests_require=['pytest>=2.8'],
include_package_data=True,
license="BSD",
maintainer="Keith Hughitt",
maintainer_email="[email protected]",
name="labnote",
packages=find_packages(),
platforms=["Linux", "Solaris", "Mac OS-X", "Unix", "Windows"],
provides=['labnote'],
scripts=['bin/labnote'],
zip_safe=False,
url="https://github.com/khughitt/labnote",
download_url="https://github.com/khughitt/labnote/tarball/0.9.3",
version="0.9.3"
)