|
1 |
| -from distutils.core import setup |
| 1 | +import setuptools |
2 | 2 |
|
3 |
| -setup( |
| 3 | +with open("README.md", "r") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setuptools.setup( |
4 | 7 | name="norma43parser",
|
5 |
| - packages=["norma43parser"], |
6 |
| - version="1.1", |
| 8 | + version="1.1.2", |
7 | 9 | license="MIT",
|
8 |
| - description="Parser for Bank Account information files formatted in Norma 43", |
9 | 10 | author="Sergi Espinar",
|
10 | 11 | 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", |
11 | 15 | url="https://github.com/sergief/norma43parser",
|
12 |
| - download_url="https://github.com/sergief/norma43parser/archive/master.zip", |
| 16 | + packages=setuptools.find_packages(), |
13 | 17 | keywords=["norma43", "parser", "bank", "account", "n43", "csb"],
|
14 |
| - setup_requires=["wheel"], |
15 |
| - install_requires=[], |
16 | 18 | classifiers=[
|
17 | 19 | "Development Status :: 4 - Beta",
|
18 | 20 | "Intended Audience :: Developers",
|
|
22 | 24 | "Programming Language :: Python :: 3.7",
|
23 | 25 | "Programming Language :: Python :: 3.8",
|
24 | 26 | ],
|
| 27 | + python_requires=">=3.6", |
25 | 28 | )
|
0 commit comments