-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
55 lines (51 loc) · 1.65 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
52
53
54
55
# coding: utf-8
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
base_path = os.path.dirname(os.path.abspath(__file__))
long_description = open(os.path.join(base_path, 'README.rst')).read()
setup(
name="featureforge",
version="0.1.7",
description="A library to build and test machine learning features",
long_description=long_description,
author="Rafael Carrascosa, Daniel Moisset, Javier Mansilla",
author_email="[email protected]",
url="https://github.com/machinalis/featureforge",
packages=[
"featureforge",
"featureforge/experimentation"
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
],
keywords=[
"machine learning", "scikit", "scikit-learn", "sklearn",
"features", "testing", "vectorization", "preprocessing"
],
install_requires=[
"docopt",
"pymongo",
"progress",
"mock",
"future",
"schema==0.3.1",
"numpy",
"scipy"
],
include_package_data=False,
)