-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
51 lines (37 loc) · 1.74 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
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from codecs import open
from os import path
from sys import version
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding = 'utf-8') as f:
long_description = f.read()
setup(name = 'pyRMT',
version = '0.1.0',
description = 'Python for Random Matrix Theory: cleaning schemes for noisy correlation matrices',
long_description = long_description,
url = 'https://github.com/GGiecold/pyRMT',
download_url = 'https://github.com/GGiecold/pyRMT',
author = 'Gregory Giecold',
author_email = '[email protected]',
maintainer = 'Gregory Giecold',
maintainer_email = '[email protected]',
license = 'MIT License',
py_modules = ['pyRMT'],
platforms = 'ALL',
install_requires = ['numpy', 'pandas', 'sklearn'],
setup_requires = ['numpy'],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics', ],
keywords = 'applied-mathematics cleaning correlation-matrices noise-reduction random-matrix-theory'
)