-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·38 lines (35 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
34
35
36
37
38
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='autonormalize',
version='2.0.1',
description='a library for automated table normalization',
url='https://github.com/alteryx/autonormalize',
license='BSD 3-clause',
author='Alteryx, Inc.',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=open('requirements.txt').readlines(),
tests_require=open('test-requirements.txt').readlines(),
python_requires='>=3.7, <4',
test_suite='autonormalize/tests',
packages=find_packages(),
include_package_data=True,
entry_points={
"featuretools_plugin": [
'autonormalize = autonormalize',
],
},
long_description=long_description,
long_description_content_type='text/markdown',
)