-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 945 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 945 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
25
26
27
28
import setuptools
with open('Readme.md') as fp:
long_description = fp.read()
with open('requirements.txt') as fp:
requirements = fp.read().splitlines()
setuptools.setup(
name='nlp_text_preprocessing',
include_package_data=True,
version='0.0.9', # Increment version
author='Uditya Narayan Tiwari',
author_email='tiwarimerit@gmail.com',
description='This is a Text Processing Package For NLP',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=requirements,
# explicit instruction to include data files in the package
package_data={'nlp_text_preprocessing': ['data/*.json']},
python_requires='>=3.9',
)