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