-
Notifications
You must be signed in to change notification settings - Fork 94
/
setup.py
34 lines (30 loc) · 1.08 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
#!/usr/bin/env python
"""
termux-create-package setup script
https://packaging.python.org/en/latest/tutorials/packaging-projects
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as file:
LONG_DESCRIPTION = file.read()
setuptools.setup(
name="termux-create-package",
version="0.12.0",
author="Agnostic Apollo, Fredrik Fornwall",
author_email="[email protected], [email protected]",
description="Utility to create binary deb packages",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/termux/termux-create-package",
project_urls={
"Bug Tracker": "https://github.com/termux/termux-create-package/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools"
],
scripts=["src/termux-create-package"],
)