-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 969 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 969 Bytes
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
from setuptools import setup, find_packages
setup(
name="beryllium",
version="1.11.0",
packages=find_packages(),
install_requires=["pyrunning", "pysetting", "pyalpm"],
description="Common python functions used in Beryllium applications",
author="Bill Sideris",
author_email="bill88t@feline.gr",
url="https://github.com/beryllium-org/python-common",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
],
project_urls={
"Source": "https://github.com/beryllium-org/python-common",
"Issues": "https://github.com/beryllium-org/python-common/issues",
},
python_requires=">=3.12",
)