-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
# versioning
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="icnab240",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Imobanco",
description="Gerador e leitor de CNAB 240",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imobanco/icnab240",
packages=[
"icnab240",
"icnab240.controllers",
"icnab240.data",
"icnab240.pipe_and_filter",
],
package_data={"icnab240": ["data/*"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
python_requires=">=3.6",
install_requires=["pycpfcnpj>=1.5", "pydantic>=1.4"],
keywords="Zoop API client wrapper",
project_urls={
"Documentation": "https://icnab240.readthedocs.io",
"Source": "https://github.com/imobanco/icnab240",
"Tracker": "https://github.com/imobanco/icnab240/issues",
},
)