forked from calidae/python-aeat_sii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.17 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
from setuptools import setup
from setuptools import find_packages
install_requires = [
'zeep>=1.6',
]
tests_require = [
'pytest>3',
'mock',
]
setup(
name='pyAEATsii',
version='1.1.2',
description='A python wrapper for the AEAT SII webservices',
author="Calidae S.L.",
author_email="dev@calidae.com",
url='http://www.calidae.com/',
download_url='https://github.com/calidae/python-aeat_sii',
install_requires=install_requires,
setup_requires=['pytest-runner'],
tests_require=tests_require,
extras_require={
'test': tests_require,
},
entry_points={},
package_dir={'': 'src'},
packages=find_packages('src'),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)