-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
60 lines (54 loc) · 1.68 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
#!/usr/bin/python
# ex:set fileencoding=utf-8:
import os
import sys
from setuptools import setup, find_packages, Command
from djangobmf import __author__, __contact__, __homepage__
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Office/Business :: Groupware',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
# Dynamically calculate the version
version = __import__('djangobmf').get_version()
setup(
name='django-bmf',
version=version,
url=__homepage__,
license='BSD',
platforms=['OS Independent'],
description='Business Management Framework with integrated ERP solution written for django',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author=__author__,
author_email=__contact__,
packages=find_packages(exclude=['sandbox']),
classifiers=CLASSIFIERS,
install_requires=[
'django',
'pytz',
'Pillow',
'django-sekizai',
'django-mptt',
'django-filter',
'reportlab',
'xhtml2pdf',
'markdown',
],
include_package_data=True,
zip_safe=False,
test_suite='run_tests.main',
tests_require = [
# 'coverage',
# 'pep8',
],
)