forked from WhyNotHugo/django-afip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (58 loc) · 2.03 KB
/
setup.py
File metadata and controls
59 lines (58 loc) · 2.03 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
setup(
name="django-afip",
description="AFIP integration for django",
author="Hugo Osvaldo Barrera",
author_email="hugo@barrera.io",
url="https://github.com/WhyNotHugo/django-afip",
project_urls={
"Documentation": "https://django-afip.readthedocs.io/",
"Issue Tracker": "https://github.com/WhyNotHugo/django-afip/issues",
"Donate": "https://liberapay.com/WhyNotHugo/",
},
license="ISC",
packages=find_packages(),
include_package_data=True,
long_description=open("README.rst").read(),
install_requires=[
"cryptography>=3.2,<37",
"django>=3.2,<4.1",
"django_renderpdf>=3.0.0,<37.0.0",
"lxml>=3.4.4",
"pyopenssl>=16.2.0",
'backports.zoneinfo;python_version<"3.9"',
"setuptools-git>=1.1",
"setuptools-scm>=1.7.0",
"wheel>=0.24.0",
"zeep>=1.1.0,<5.0.0",
"qrcode[pil]>=6.1,<7.0",
"pyyaml>=5.3.1,<7.0.0",
],
extras_require={
"docs": ["Sphinx", "sphinx-autobuild", "sphinx_rtd_theme"],
"postgres": ["psycopg2"],
"mysql": ["mysqlclient"],
"factories": ["factory-boy"],
},
setup_requires=["setuptools_scm"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)