-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·38 lines (34 loc) · 1.17 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
#!/usr/bin/env python
'''FiscalHr Setup'''
from distutils.core import setup
import fiscalhr
setup(
name=fiscalhr.__title__,
version=fiscalhr.__version__,
author=fiscalhr.__author__,
author_email=fiscalhr.__author_email__,
url=fiscalhr.__url__,
license=fiscalhr.__license__,
description=fiscalhr.__doc__,
long_description=open('README.rst').read(),
packages=['fiscalhr'],
package_data={
'fiscalhr': [
'fiskalizacija_service/certs/*.pem',
'fiskalizacija_service/wsdl/*.wsdl',
'fiskalizacija_service/schema/*.xsd',
],
},
dependency_links=['https://github.com/vingd/libxml2-python/archive/libxml2-python-2.7.8.zip'],
install_requires=[i.strip() for i in open('requirements.txt').readlines()],
platforms=['OS Independent'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)