-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 897 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
26
27
28
29
30
from pathlib import Path
from setuptools import find_packages, setup
import remarkov
setup(
name="remarkov",
version=remarkov.__version__,
description="Generate text from text using Markov chains.",
author="lausek",
author_email="[email protected]",
url="https://github.com/lausek/remarkov",
packages=find_packages(),
entry_points={"console_scripts": ["remarkov=remarkov.cli:main"]},
long_description=open(Path(__file__).parent / "README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Text Processing :: Linguistic",
],
keywords=[
"markov",
"cli",
],
package_data={
"remarkov": ["py.typed"],
},
)