forked from syntpump/declensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 769 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
import setuptools
setuptools.setup(
name="dclua",
version="2",
description="Library for word declensions",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/syntpump/declensor",
license="MIT License",
author="Syntpump",
author_email="lynnporu@gmail.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
],
keywords="nlp",
packages=setuptools.find_packages(),
python_requires=">3",
project_urls={
"Syntpump on GitHub": "https://github.com/syntpump"
}
)