This commit is contained in:
parent
038ff6622a
commit
7db88cb6d8
@ -11,7 +11,6 @@ repos:
|
|||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
- id: debug-statements
|
- id: debug-statements
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
- id: fix-encoding-pragma
|
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
- id: name-tests-test
|
- id: name-tests-test
|
||||||
exclude: tests/(common.py|util.py|(helpers|integration/factories)/(.+).py)
|
exclude: tests/(common.py|util.py|(helpers|integration/factories)/(.+).py)
|
||||||
|
22
setup.py
22
setup.py
@ -1,8 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
from codecs import open
|
from codecs import open
|
||||||
from os import path
|
from os import path
|
||||||
|
|
||||||
from setuptools import find_packages
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
here = path.abspath(path.dirname(__file__))
|
here = path.abspath(path.dirname(__file__))
|
||||||
@ -13,34 +11,24 @@ with open(path.join(here, "README.md"), encoding="utf-8") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="padio",
|
name="padio",
|
||||||
version="1.0.0",
|
version="1.0.1",
|
||||||
description="Zero pad numeric filenames",
|
description="Zero pad numeric filenames",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://git.iamthefij.com/iamthefij/padio.git",
|
url="https://git.iamthefij.com/iamthefij/padio.git",
|
||||||
download_url=(
|
download_url=("https://git.iamthefij.com/iamthefij/padio/releases"),
|
||||||
"https://git.iamthefij.com/iamthefij/padio.git/archive/master.tar.gz"
|
|
||||||
),
|
|
||||||
author="iamthefij",
|
author="iamthefij",
|
||||||
author_email="",
|
author_email="ian@iamthefij.com",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
],
|
],
|
||||||
keywords="",
|
keywords="",
|
||||||
packages=find_packages(
|
py_modules=["padio"],
|
||||||
exclude=[
|
|
||||||
"contrib",
|
|
||||||
"docs",
|
|
||||||
"examples",
|
|
||||||
"scripts",
|
|
||||||
"tests",
|
|
||||||
]
|
|
||||||
),
|
|
||||||
install_requires=[],
|
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"padio=padio:main",
|
"padio=padio:main",
|
||||||
|
Loading…
Reference in New Issue
Block a user