-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsetup.py
31 lines (29 loc) · 925 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
25
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='nfelib',
version='0.1',
author='Raphael Valyi',
author_email='[email protected]',
url='https://github.com/akretion/nfelib',
description='nfelib: electronic invoicing library for Brazil',
long_description=open('README.rst').read(),
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
],
keywords='e-invoice NFe ERP Odoo',
packages=find_packages(),
include_package_data=True,
install_requires={
'futures; python_version == "2.7"'
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
scripts=[],
zip_safe=False,
)