-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.35 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (39 loc) · 1.35 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
35
36
37
38
39
40
from setuptools import setup
from io import open
setup(
name="scireadability",
packages=["scireadability"],
version="2.0.2",
description="Calculate statistical features from text, mainly scientific literature",
author="Robert Roth",
author_email="rwroth5@gmail.com",
url="https://github.com/robert-roth/scireadability",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
package_data={
"": [
"resources/en/easy_words.txt",
"resources/en/custom_dict.json",
"resources/en/cmudict.dict",
]
},
include_package_data=True,
install_requires=["appdirs"],
license="MIT",
python_requires=">=3.10",
project_urls={
"Documentation": "https://github.com/robert-roth/scireadability",
"Demo": "https://scireadability-rwroth5.pythonanywhere.com/analyze/",
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Text Processing",
],
)