-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (33 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(
name = "thorns",
version = "2",
author = "Marek Rudnicki",
author_email = "[email protected]",
description = "Spike analysis software",
license = "GPLv3+",
url = "https://github.com/mrkrd/thorns",
download_url = "https://github.com/mrkrd/thorns/tarball/master",
packages = find_packages(),
package_data = {
"thorns.datasets": ["anf_zilany2014.pkl"],
},
long_description = long_description,
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
platforms = ["Linux", "Windows", "FreeBSD"],
install_requires=["numpy", "pandas", "scipy", "tables"],
)