-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
48 lines (42 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
#!/bin/python
from setuptools import setup
from setuptools import find_packages
import nlp_profiler
with open("README.md", encoding="utf8") as readme:
long_description = readme.read()
with open("requirements.txt", encoding="utf8") as requirements_txt:
install_requirements = requirements_txt.read().split("\n")
download_url = f"https://github.com/neomatrix369/nlp_profiler/releases/tag/v{nlp_profiler.__version__}"
setup(
name="nlp_profiler",
version=nlp_profiler.__version__,
description="A simple NLP library allows profiling datasets with one or more text columns.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mani Sarkar",
url="https://github.com/neomatrix369/nlp_profiler",
license="Apache 2.0",
packages=find_packages(),
include_package_data=True,
download_url=download_url,
keywords="nlp profiler nlpprofiler nlp_profiler nlp-profiler nlpprof profile profiling",
install_requires=install_requirements,
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
options={"bdist_wheel": {"universal": True}},
)