-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (26 loc) · 903 Bytes
/
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
from setuptools import setup
setup(
name="pypi2pkgbuild",
description="A PyPI to PKGBUILD converter.",
long_description=open("README.rst", encoding="utf-8").read(),
url="https://github.com/anntzer/pypi2pkgbuild",
author="Antony Lee",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System :: Software Distribution",
],
package_dir={"": "lib"},
python_requires=">=3.8",
setup_requires=["setuptools_scm"],
use_scm_version=lambda: { # xref pypi2pkgbuild.py
"version_scheme": "post-release",
"local_scheme": "node-and-date",
},
scripts=["pypi2pkgbuild.py"],
)