-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (57 loc) · 1.91 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
import codecs
from setuptools import setup, find_packages
from altrepodb import __version__
with codecs.open("README.md", encoding="utf-8") as f:
README = f.read()
with codecs.open("CHANGELOG.md", encoding="utf-8") as f:
CHANGELOG = f.read()
requirements = None
with open("requirements.txt", "r") as f:
requirements = [line.rstrip() for line in f.readlines() if not line.startswith("-")]
setup(
name="altrepodb",
version=__version__,
author="Danil Shein",
author_email="[email protected]",
python_requires=">=3.7",
packages=find_packages(exclude=["tests", ]),
url="https://git.altlinux.org/gears/a/altrepodb.git",
license="GNU GPLv3",
description="ALTRepo Uploader",
include_package_data=True,
long_description="\n".join((README, CHANGELOG)),
long_description_content_type="text/markdown",
zip_safe=False,
install_requires=requirements,
keywords="altrepo altrepodb",
scripts=[
"bin/uploaderd",
"bin/acl_loader",
"bin/beehive_loader",
"bin/bugzilla_loader",
"bin/image_loader",
"bin/iso_loader",
"bin/package_loader",
"bin/repocop_loader",
"bin/repo_loader",
"bin/spdx_loader",
"bin/task_cleaner",
"bin/task_loader",
"bin/watch_loader",
"bin/repodb_amqpfire",
],
classifiers=[
# "Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)