-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 953 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from samewords import __version__
with open("README.md") as file:
long_description = str(file.read())
setup(
name="samewords",
version=__version__,
packages=find_packages(),
install_requires=["regex==2018.8.17"],
test_requires=["pytest==5.3.2"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Text Processing :: Markup :: LaTeX",
],
description="Package for disambiguation of identical terms in critical "
"editions in LaTeX with reledmac.",
url="https://github.com/stenskjaer/samewords",
author="Michael Stenskjær Christensen",
author_email="[email protected]",
license="MIT",
long_description=long_description,
entry_points={"console_scripts": ["samewords=samewords.cli:main"]},
)