forked from Truelite/python-a38
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 801 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (24 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
from setuptools import setup
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name="a38",
version="0.1.3",
description="parse and generate Italian Fattura Elettronica",
long_description=long_description,
long_description_content_type='text/markdown',
author="Enrico Zini",
author_email="enrico@truelite.it",
url="https://github.com/Truelite/python-a38/",
license="https://www.apache.org/licenses/LICENSE-2.0.html",
packages=["a38"],
scripts=["a38tool"],
install_requires=["python-dateutil", "pytz", "asn1crypto"],
test_requires=["python-dateutil", "pytz", "asn1crypto"],
extras_require={
"formatted_python": ["yapf"],
"html": ["lxml"],
"cacerts": ["requests"],
},
)