-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 912 Bytes
/
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
from setuptools import setup
with open('README.md', 'r', encoding='utf8') as f:
long_description = f.read()
__version__ = 'unknown'
exec(open('rll/version.py').read())
setup(
name='rll',
packages=['rll', 'tests'],
version=__version__,
description='Collection of different methods frequently used in the reiterlab across projects.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['numpy', 'matplotlib', ],
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest', 'pytest-cov'],
extras_require={'plotting': ['matplotlib']},
url='https://github.com/reiterlab/rll',
author='Johannes Reiter',
author_email='[email protected]',
license='GNUv3',
classifiers=[
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
)