-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (30 loc) · 1.17 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
from setuptools import setup, find_packages
def get_description():
return "The Python interface diff tool"
def get_long_description():
text = open("README.md").read()
# The README starts with the same text as "description",
# which makes sense, but on PyPI causes same text to be
# displayed twice. So let's strip that.
return text.replace(get_description() + ".\n\n", "", 1)
def get_install_requires():
return open("requirements.txt").readlines()
setup(
name="pidiff",
version="1.7.2",
author="Rohan McGovern",
author_email="rohan@mcgovern.id.au",
url="https://github.com/rohanpm/pidiff",
packages=find_packages(exclude=["tests", "tests.*"]),
license="GNU General Public License",
description=get_description(),
long_description=get_long_description(),
long_description_content_type="text/markdown",
install_requires=get_install_requires(),
python_requires=">=3.8",
entry_points={"console_scripts": ["pidiff=pidiff._impl.command:main"]},
project_urls={
"Documentation": "https://rohanpm.github.io/pidiff/",
"Changelog": "https://github.com/rohanpm/pidiff/blob/master/CHANGELOG.md",
},
)