forked from codingjoe/django-vies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·57 lines (49 loc) · 1.49 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
#!/usr/bin/env python
import os
import sys
from setuptools import find_packages, setup
try:
import django
except ImportError:
django = None
if django and ('sdist' in sys.argv or 'develop' in sys.argv):
try:
os.chdir('vies')
from django.core import management
management.call_command('compilemessages')
finally:
os.chdir('..')
PACKAGE = "vies"
URL = "https://github.com/codingjoe/django-vies"
DESCRIPTION = __import__(PACKAGE).__doc__
VERSION = __import__(PACKAGE).__version__
setup(
name='django-vies',
version=VERSION,
description=DESCRIPTION,
author='codingjoe',
url=URL,
download_url=URL,
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Office/Business :: Financial :: Accounting',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
install_requires=[
'suds-jurko>=0.6',
'retrying>=1.1.0',
],
)