forked from alteryx/nlp_primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 854 Bytes
/
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
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
extras_require = {
'complete': open('complete-requirements.txt').readlines()
}
setup(
name='nlp_primitives',
version='1.1.0',
author='Feature Labs, Inc.',
author_email='support@featurelabs.com',
license='BSD 3-clause',
url='http://www.featurelabs.com/',
install_requires=open('requirements.txt').readlines(),
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
extras_require=extras_require,
entry_points={
'featuretools_plugin': [
'nlp_primitives = nlp_primitives',
],
},
)