-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (33 loc) · 1.37 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyrunning",
version="0.0.16",
author="pvshvp",
author_email="pvshvp.oss@gmail.com",
description="A python library to run and live-log OS commands, functions, scripts, and batch jobs either immedietly, or to be queued for later execution.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pvshvp-oss/pyrunning",
download_url="https://pypi.org/project/pyrunning/",
project_urls={
'Documentation': 'https://github.com/pvshvp-oss/pyrunning/',
'Source': 'https://github.com/pvshvp-oss/pyrunning',
'Tracker': 'https://github.com/pvshvp-oss/pyrunning/issues',
},
classifiers=[
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
python_requires='>=3.10'
)