-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 1.27 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
import shop_currencies
with open('README.rst') as fd:
README = fd.read()
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
setup(
author="Richard Case",
author_email="rich@racitup.com",
name="djangoshop-currencies",
packages=find_packages(exclude=['docs']),
version=shop_currencies.__version__,
description="Django-SHOP integration with django-currencies",
long_description=README,
url='https://github.com/racitup/djangoshop-currencies',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
keywords= ['Django', 'Django-SHOP'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.10.0,<1.11',
'django-currencies>=0.4.0',
'django-shop>=0.11',
],
)