-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.21 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fobj:
readme = fobj.read()
setup(name='pdtransform',
version='0.2',
author='Michele Lacchia',
author_email='[email protected]',
url='http://signal-to-noise.xyz/why-you-should-use-scikit-learns-pipeline-object.html',
license='MIT',
description='Sklearn transformers that work with Pandas dataframes',
platforms='any',
long_description=readme,
packages=find_packages(),
install_requires=['scikit-learn', 'pandas'],
keywords='sklearn pandas transformers pipeline',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)