forked from release-engineering/pubtools-pulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (49 loc) · 2.22 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
from setuptools import setup, find_namespace_packages
def get_description():
return "Publishing tools for Pulp"
def get_long_description():
with open("README.md") as f:
text = f.read()
# Long description is everything after README's initial heading
idx = text.find("\n\n")
return text[idx:]
def get_requirements():
with open("requirements.in") as f:
return f.read().splitlines()
setup(
name="pubtools-pulp",
version="1.31.0",
packages=find_namespace_packages(where="src"),
package_dir={"": "src"},
url="https://github.com/release-engineering/pubtools-pulp",
license="GNU General Public License",
description=get_description(),
long_description=get_long_description(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=get_requirements(),
python_requires=">=3.6",
entry_points={
"console_scripts": [
"pubtools-pulp-garbage-collect = pubtools._pulp.tasks.garbage_collect:entry_point",
"pubtools-pulp-clear-repo = pubtools._pulp.tasks.clear_repo:entry_point",
"pubtools-pulp-maintenance-on = pubtools._pulp.tasks.set_maintenance.set_maintenance_on:entry_point",
"pubtools-pulp-maintenance-off = pubtools._pulp.tasks.set_maintenance.set_maintenance_off:entry_point",
"pubtools-pulp-publish = pubtools._pulp.tasks.publish:entry_point",
"pubtools-pulp-push = pubtools._pulp.tasks.push:entry_point",
"pubtools-pulp-fix-cves = pubtools._pulp.tasks.fix_cves:entry_point",
"pubtools-pulp-delete = pubtools._pulp.tasks.delete:entry_point",
"pubtools-pulp-copy-repo = pubtools._pulp.tasks.copy_repo:entry_point",
]
},
project_urls={
"Documentation": "https://release-engineering.github.io/pubtools-pulp/",
"Changelog": "https://github.com/release-engineering/pubtools-pulp/blob/master/CHANGELOG.md",
},
)