forked from alteryx/featuretools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.94 KB
/
setup.py
File metadata and controls
55 lines (51 loc) · 1.94 KB
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
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()
extras_require = {
'tsfresh': ['featuretools-tsfresh-primitives >= 1.0.0'],
'update_checker': ['alteryx-open-src-update-checker >= 2.0.0'],
'nlp_primitives': ['nlp-primitives[complete] >= 2.0.0'],
'koalas': open('koalas-requirements.txt').readlines(),
'autonormalize': ['autonormalize >= 1.0.2'],
}
extras_require['complete'] = sorted(set(sum(extras_require.values(), [])))
setup(
name='featuretools',
version='1.4.0',
packages=find_packages(),
description='a framework for automated feature engineering',
url='https://featuretools.com',
license='BSD 3-clause',
author='Feature Labs, Inc.',
author_email='open_source_support@alteryx.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
install_requires=open('requirements.txt').readlines(),
python_requires='>=3.7, <4',
extras_require=extras_require,
keywords='feature engineering data science machine learning',
include_package_data=True,
entry_points={
'console_scripts': [
'featuretools = featuretools.__main__:cli'
]
},
long_description=long_description,
long_description_content_type='text/markdown'
)