-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 735 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 735 Bytes
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
from setuptools import setup
import sys
if not sys.version_info[0] == 3 and sys.version_info[1] < 6:
sys.exit('Python < 3.6 is not supported')
version = '0.23'
setup(
name='nancorrmp',
packages=['nancorrmp', 'test'],
version=version,
description='A multiprocessing version of pandas correlation method',
author='Michał Bukowski',
author_email='michal.bukowski@buksoft.pl',
license='MIT',
url='https://github.com/bukson/nancorrmp',
download_url='https://github.com/bukson/nancorrmp/tarball/' + version,
keywords=['correlation', 'multiprocessing', 'pandas'],
classifiers=[],
install_requires=[
'pandas',
'numpy',
],
tests_require=[
'scipy'
],
)