This repository was archived by the owner on Feb 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.25 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.25 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
#!/usr/bin/env python
from setuptools import setup, find_packages
dev_requires = [
'Sphinx==1.2.2',
]
install_requires = [
'nodeconductor>=0.107.0',
'lxml>=3.2',
'xhtml2pdf==0.0.6',
'html5lib<0.99999999',
'Pillow>=2.0.0,<3.0.0',
]
setup(
name='nodeconductor-killbill',
version='0.5.1',
author='OpenNode Team',
author_email='info@opennodecloud.com',
url='http://nodeconductor.com',
description='NodeConductor KillBill allows to make invoices via KillBill',
long_description=open('README.rst').read(),
package_dir={'': 'src'},
packages=find_packages('src', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
zip_safe=False,
extras_require={
'dev': dev_requires,
},
entry_points={
'nodeconductor_extensions': (
'nodeconductor_killbill = nodeconductor_killbill.extension:KillBillExtension',
),
},
# tests_require=tests_requires,
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
)