-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 741 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages, Extension
setup(
name="RoboNoise",
version="0.0.1",
description="Red Noise analysis",
keywords='',
author="Etienne Bachelet",
author_email="etibachelet@gmail.com",
license='GPL-3.0',
url="https://github.com/ebachelet/RoboNoise",
packages=find_packages('.'),
include_package_data=True,
install_requires=['scipy','numpy','pandas'],
test_suite="nose.collector",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
)