-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1.34 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
import setuptools
with open('Readme.md', encoding='utf-8') 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.2.1',
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',
url='https://github.com/udityamerit/Text-Processing-Package-For-Natural-Language-Processing',
project_urls={
'Author Website': 'https://udityanarayantiwari.netlify.app/',
'Source Code': 'https://github.com/udityamerit/Text-Processing-Package-For-Natural-Language-Processing',
'Bug Tracker': 'https://github.com/udityamerit/Text-Processing-Package-For-Natural-Language-Processing/issues',
},
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',
)