-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.16 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 file:
long_description = file.read()
setuptools.setup(
name="niceshell",
version="2.0.3",
author="Andrew Voynov",
author_email="[email protected]",
description="Integration of shell and basic GNU core unilities for better coding.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/Andrew15-5/niceshell",
download_url="https://github.com/Andrew15-5/niceshell/releases/download/v2.0.3/niceshell-2.0.3-py3-none-any.whl",
packages=["niceshell", "niceshell/tests"],
package_data={
"niceshell": ['*']
},
python_requires=">=3.6",
extras_require={
"pytest": "pytest"
},
install_requires=["regex"],
keywords=["nice", "shell", "GNU", "coreutils", "sh"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: System :: System Shells",
]
)