-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
67 lines (56 loc) · 1.89 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
65
66
67
import re
from setuptools import setup
from pent import __version__
NAME = "pent"
def readme():
with open("README.rst", "r") as f:
content = f.read()
# Helper function
def content_update(content, pattern, sub):
return re.sub(pattern, sub, content, flags=re.M | re.I)
# Docs reference updates to current release version, for PyPI
# This one gets the badge image
content = content_update(
content,
r"(?<=/readthedocs/{0}/)\S+?(?=\.svg$)".format(NAME),
"v" + __version__,
)
# This one gets the RtD links
content = content_update(
content,
r"(?<={0}\.readthedocs\.io/en/)\S+?(?=[/>])".format(NAME),
"v" + __version__,
)
return content
setup(
name="pent",
version=__version__,
description="pent Extracts Numerical Text",
long_description=readme(),
long_description_content_type="text/x-rst",
url="https://www.github.com/bskinn/pent",
license="MIT License",
author="Brian Skinn",
author_email="[email protected]",
packages=["pent"],
provides=["pent"],
python_requires=">=3.4",
requires=["attrs (>=17.1)", "pyparsing (>=1.5.5)"],
install_requires=["attrs>=17.1", "pyparsing>=1.5.5"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
],
)