forked from kayibal/sparsity
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (37 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
37
38
39
40
41
42
from distutils.core import setup
from setuptools import find_packages
import versioneer
packages = find_packages()
packages.remove('sparsity.test')
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='sparsity',
version=versioneer.get_version(),
author='Alan Hoeng',
author_email='[email protected]',
description="Sparse data processing toolbox",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/datarevenue-berlin/sparsity",
packages=packages,
cmdclass=versioneer.get_cmdclass(),
install_requires=[
'pandas>=0.21.0,<=0.23.4',
'scipy>0.19.1',
'numpy>1.16.0',
's3fs>=0.1.0',
'dask>0.20.0'
],
test_requires=[
'boto3==1.7.84',
'botocore==1.10.84',
'moto==1.3.6'
],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)