This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
executable file
·44 lines (42 loc) · 1.54 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
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r", encoding="utf8") as f:
long_description: str = f.read()
setup(
name="pyate",
version=
"0.5.5", # Start with a small number and increase it with every change you make
license=
"MIT", # Chose a license from here: https://help.github.com/articles/licensing-a-repository
# Give a short description about your library
description="PYthon Automated Term Extraction",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kevin Lu",
author_email="[email protected]",
url="https://github.com/kevinlu1248/pyate",
download_url="https://github.com/kevinlu1248/pyate/archive/0.4.tar.gz",
keywords=[
"nlp",
"python3",
"spacy",
"term_extraction",
], # Keywords that define your package best
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"": ["*.zip"]},
install_requires=[
"pandas>=1.0.3",
"numpy>=1.18.4",
"spacy>=2.2.4",
"pyahocorasick>=1.4.0",
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)