PyPI packaging
This commit is contained in:
parent
f652dfc3d1
commit
b15e43bb64
3 changed files with 16 additions and 3 deletions
0
pat/__init__.py
Normal file
0
pat/__init__.py
Normal file
19
setup.py
19
setup.py
|
@ -1,7 +1,20 @@
|
||||||
from distutils.core import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "pat",
|
name = "pat",
|
||||||
version = "2021.09.07",
|
version = "2021.09.09",
|
||||||
scripts = ["pat.py"]
|
description = "Outputs text with rainbow colors.",
|
||||||
|
url = "https://gitdab.com/endie2/pat",
|
||||||
|
author = "Lavender Perry",
|
||||||
|
author_email = "endie2@protonmail.com",
|
||||||
|
packages = ["pat"],
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
"Environment :: Console",
|
||||||
|
"Intended Audience :: End Users/Desktop",
|
||||||
|
"License :: Public Domain",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"Topic :: Utilities"
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue