-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
34 lines (30 loc) · 1.08 KB
/
setup.py
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
27
28
29
30
31
32
33
34
import pathlib
from setuptools import setup
from spedextractor import __version__
REPO = pathlib.Path(__file__).parent
README = (REPO / "README.rst").read_text()
setup(
name="sped-extractor",
version=__version__,
description=(
"Extrai e interpreta os registros e os campos das tabelas dos manuais do SPED "
"(Sistema Público de Escrituração Digital), para os módulos "
"ECD, ECF, EFD Contribuições (PIS, COFINS) e EFD ICMS IPI."
),
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/akretion/sped-extractor",
author="Akretion",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=["spedextractor"],
include_package_data=True,
install_requires=[r.strip() for r in open("requirements.txt").read().splitlines()],
setup_requires=["setuptools_scm"],
)