-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.04 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
from setuptools import setup
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rba',
version='0.1.1',
description=('Python toolbox for recurrence plot based analysis'),
long_description=long_description,
author='Bedartha Goswami',
author_email='[email protected]',
url='https://github.com/mlcs/rba',
license='GNU Affero GPL v3.0',
packages=['copra'],
# no dependencies in this example
install_requires=[
'numpy',
'pandas',
'scipy',
],
# no scripts in this example
# scripts=['bin/a-script'],
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Programming Language :: Python :: Only',
'License :: OSI Approved :: GNU Affero General Public License v3',
]
)