forked from allegro/ralph_pricing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (60 loc) · 2.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- encoding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
assert sys.version_info >= (2, 7), "Python 2.7+ required."
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_dir, 'README.rst')) as readme_file:
with open(os.path.join(current_dir, 'CHANGES.rst')) as changes_file:
long_description = readme_file.read() + '\n' + changes_file.read()
sys.path.insert(0, current_dir + os.sep + 'src')
from ralph_scrooge import VERSION
release = ".".join(str(num) for num in VERSION)
setup(
name='ralph_scrooge',
version=release,
author='Grupa Allegro Sp. z o.o. and Contributors',
author_email='[email protected]',
description="Pricing module for Ralph",
long_description=long_description,
url='http://ralph.allegrogroup.com/',
keywords='',
platforms=['any'],
license='Apache Software License v2.0',
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
zip_safe=False, # because templates are loaded from file path
install_requires=[
'ralph>=2.1.0',
'ralph_assets>=2.3.0',
'python-ceilometerclient>=1.0.10',
'python-novaclient==2.17.0',
'django-simple-history',
'djangorestframework==2.4.3',
'django-filter>=0.8',
'django-nose>=1.3',
],
entry_points={
'django.pluggable_app': [
'scrooge = ralph_scrooge.app:Scrooge',
],
'scrooge.collect_plugins': [
'scrooge = ralph_scrooge.plugins.collect',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet :: WWW/HTTP',
]
)