forked from mirumee/django-prices-vatlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·38 lines (35 loc) · 1.33 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
#! /usr/bin/env python
import os
from setuptools import setup
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tests.settings')
CLASSIFIERS = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules']
setup(
name='django-prices-vatlayer',
author='Mirumee Software',
author_email='[email protected]',
description='vatlayer.com support for django',
license='BSD',
version='1.0.2',
url='https://github.com/mirumee/django-prices-vatlayer',
packages=[
'django_prices_vatlayer', 'django_prices_vatlayer.migrations',
'django_prices_vatlayer.management',
'django_prices_vatlayer.management.commands'],
include_package_data=True,
classifiers=CLASSIFIERS,
install_requires=[
'Django>=1.11', 'prices>=1.0.0', 'requests', 'jsonfield'],
platforms=['any'],
zip_safe=False)