forked from boris-savic/python-furs-fiscal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 744 Bytes
/
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
from setuptools import setup
setup(
name = 'furs_fiscal',
packages = ['furs_fiscal'],
version = '0.2.5',
description = 'Python library for simplified communication with FURS (Financna uprava Republike Slovenije).',
author = 'Boris Savic',
author_email = 'boris70@gmail.com',
url = 'https://github.com/boris-savic/python-furs-fiscal',
download_url = 'https://github.com/boris-savic/python-furs-fiscal/tarball/0.2.5',
keywords = ['FURS', 'fiscal', 'fiscal register', 'davcne blagajne'],
classifiers = [],
package_data={'furs_fiscal': ['certs/*.pem']},
install_requires=[
'pytz',
'requests',
'python-jose',
'pyOpenSSL',
'urllib3',
'pyasn1',
'ndg-httpsclient'
]
)