-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
64 lines (56 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = ["regex>=2022.8.17", "xmlschema"]
test_requirements = [
# TODO: put package test requirements here
"pytest"
]
setup(
name="choppa",
version="0.9.0",
description="",
python_requires=">=3.7",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dmitro Chaplynskyi",
author_email="chaplinsky.dmitry@gmail.com",
url="https://github.com/lang-uk/choppa",
packages=[
"choppa",
],
package_dir={"choppa": "choppa"},
include_package_data=True,
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords="sentence tokenizer,natural language processing,srx",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Natural Language :: Ukrainian",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite="tests",
tests_require=test_requirements,
package_data={'choppa': ['data/srx/*.srx', 'data/xsd/*.xsd']},
)