-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 816 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 816 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
from os import path
from setuptools import find_packages, setup
dirname = path.abspath(path.dirname(__file__))
with open(path.join(dirname, 'README.md')) as f:
long_description = f.read()
setup(
name='categorical_encoding',
version='0.4.1',
description='categorical encoding for featuretools',
author='Feature Labs, Inc.',
author_email='support@featurelabs.com',
license='BSD 3-clause',
url='http://www.featurelabs.com/',
install_requires=open('requirements.txt').readlines(),
tests_require=open('test-requirements.txt').readlines(),
packages=find_packages(),
include_package_data=True,
keywords='feature engineering data science machine learning categorical encoding',
long_description=long_description,
long_description_content_type='text/markdown'
)