forked from circstat/pycircstat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 649 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name = "pycircstat",
version = "0.0.1",
author = "Philipp Berens et al.",
author_email = "philipp.berens@uni-tuebingen.de",
description = ("Toolbox for circular statistics with Python"),
#license = "MIT",
keywords = "statistics",
#url = "http://packages.python.org/pycircstat",
packages=['pycircstat', 'tests'],
#long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
#"License :: OSI Approved :: MIT License",
],
setup_requires=['nose>=1.0', 'mock', 'sphinx_rtd_theme', "decorator"],
)