-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (44 loc) · 1.29 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
import re
import os
import codecs
from setuptools import setup, find_packages
long_description = """Some projects such as Tito, Packit,
Fedora Review Service, etc operate over currently active Fedora releases.
They can use this package to find their version numbers instead of manually
defining a list.
This package queries Bodhi to find the active releases and therefore requires an
internet connection."""
setup_requires = [
"pytest",
"munch",
]
install_requires = [
"munch",
"requests",
]
__description__ = "Aliases for active Fedora releases"
__author__ = "Copr and Packit teams"
__author_email__ = "[email protected]"
__url__ = "https://github.com/rpm-software-management/fedora-distro-aliases"
setup(
name="fedora-distro-aliases",
version="1.5",
description=__description__,
long_description=long_description,
author=__author__,
author_email=__author_email__,
url=__url__,
license="GPLv2+",
classifiers=[],
setup_requires=setup_requires,
install_requires=install_requires,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
py_modules=["cli"],
entry_points={
"console_scripts": [
'resolve-fedora-aliases = fedora_distro_aliases.cli:main'
],
},
)