-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (39 loc) · 1.29 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
import os
from setuptools import setup, find_packages
from sparx import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = [
"pandas",
"numpy",
"scipy",
"scikit-learn"
]
setup(
name = "sparx",
version = "0.0.1",
description = "Sparx is an advanced and simplified data munging, wrangling and preparation library",
long_description = read('README.rst'),
url = 'http://cleverinsight.co',
license = 'BSD',
author = 'Bastin Robins J',
author_email = 'robin@cleverinsight.co',
packages = find_packages(exclude=['tests']),
include_package_data = True,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Other/Proprietary License',
'Operating System :: OS Independent',
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
],
install_requires = requirements,
tests_require = [],
)