forked from haavard/arch-signoff
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (40 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md") as readme_file:
readme_data = readme_file.read()
setup(
name="arch-signoff",
use_scm_version=True,
description="Sign off Arch Linux test packages",
long_description=readme_data,
author="Håvard Pettersson",
author_email="mail@haavard.me",
url="https://github.com/archlinux/arch-signoff",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
],
setup_requires=["setuptools_scm"],
install_requires=[
"click",
"python-dateutil",
"pyalpm>=0.9.0",
"requests"
],
tests_require=[
"pytest",
"pytest-pacman",
],
packages=["signoff"],
entry_points="""
[console_scripts]
signoff=signoff:main
"""
)