Skip to content

Commit 21ea831

Browse files
committed
fixed packaging
1 parent 7871207 commit 21ea831

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ venv/
22
.idea/
33
.mypy_cache/
44
__pycache__
5+
build/
6+
dist/
7+
norma43parser.egg-info/
8+

setup.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
from distutils.core import setup
1+
import setuptools
22

3-
setup(
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
47
name="norma43parser",
5-
packages=["norma43parser"],
6-
version="1.1",
8+
version="1.1.2",
79
license="MIT",
8-
description="Parser for Bank Account information files formatted in Norma 43",
910
author="Sergi Espinar",
1011
author_email="sergief@users.noreply.github.com",
12+
description="Parser for Bank Account information files formatted in Norma 43",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
1115
url="https://github.com/sergief/norma43parser",
12-
download_url="https://github.com/sergief/norma43parser/archive/master.zip",
16+
packages=setuptools.find_packages(),
1317
keywords=["norma43", "parser", "bank", "account", "n43", "csb"],
14-
setup_requires=["wheel"],
15-
install_requires=[],
1618
classifiers=[
1719
"Development Status :: 4 - Beta",
1820
"Intended Audience :: Developers",
@@ -22,4 +24,5 @@
2224
"Programming Language :: Python :: 3.7",
2325
"Programming Language :: Python :: 3.8",
2426
],
27+
python_requires=">=3.6",
2528
)

0 commit comments

Comments
 (0)