-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 804 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='rtmodels',
version='0.1.0',
author='Sebastian Bitzer',
author_email='sebastian.bitzer@tu-dresden.de',
packages=['rtmodels'],
description='Models of response time.',
zip_safe=False, # needed, because otherwise numba cannot cache
install_requires=['NumPy >=1.7.0', 'matplotlib', 'seaborn', 'numba'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
]
)