padio/setup.py

38 lines
1.1 KiB
Python
Raw Permalink Normal View History

2021-02-06 00:43:31 +00:00
from codecs import open
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
2021-02-06 02:20:18 +00:00
name="padio",
2021-02-08 17:08:42 +00:00
version="1.0.1",
2021-02-06 00:43:31 +00:00
description="Zero pad numeric filenames",
long_description=long_description,
long_description_content_type="text/markdown",
2021-02-06 02:20:18 +00:00
url="https://git.iamthefij.com/iamthefij/padio.git",
2021-02-08 17:08:42 +00:00
download_url=("https://git.iamthefij.com/iamthefij/padio/releases"),
2021-02-06 00:43:31 +00:00
author="iamthefij",
2021-02-08 17:08:42 +00:00
author_email="ian@iamthefij.com",
2021-02-06 00:43:31 +00:00
classifiers=[
2021-02-06 07:17:43 +00:00
"License :: OSI Approved :: MIT License",
2021-02-08 17:08:42 +00:00
"Programming Language :: Python :: 3 :: Only",
2021-02-06 07:17:43 +00:00
"Programming Language :: Python :: 3",
2021-02-06 00:43:31 +00:00
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2021-02-06 00:43:31 +00:00
],
keywords="",
2021-02-08 17:08:42 +00:00
py_modules=["padio"],
2021-02-06 00:43:31 +00:00
entry_points={
"console_scripts": [
2021-02-06 02:20:18 +00:00
"padio=padio:main",
2021-02-06 00:43:31 +00:00
],
},
)