-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (45 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""Setup script
For details: https://packaging.python.org/en/latest/distributing.html
"""
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'readme.md'), 'r') as fd:
long_description = fd.read()
setuptools.setup(
name='reproducible',
version='0.4.1',
description='Reproducible library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/oist-cnru/reproducible',
author='Fabien C. Y. Benureau',
author_email='[email protected]',
license='BSD',
keywords='replicable reproducible research',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# where is our code
packages=['reproducible'],
# include readme and license file.
package_data={'': ['readme.md', 'license.md']},
data_files=[('.',['readme.md', 'license.md'])],
include_package_data=True,
# required dependencies
install_requires=['gitpython', 'pyyaml', 'py-cpuinfo'],
# you can install extras_require with
# $ pip install -e .[test]
extras_require={'tests': ['pytest', 'pytest-cov'],
'docs' : ['sphinx', 'sphinx-rtd-theme']},
)