-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·51 lines (48 loc) · 1.43 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
VERSION = "1.3.1"
REQUIRES = [
'django>=1.9',
'django-bootstrap3',
'django-compressor',
'django-attachments',
'django-haystack>=2.0',
'django-filter',
'djangorestframework',
'whoosh',
'markdown',
'html2text',
'chardet',
'imapclient',
'tnefparse',
]
setup(name='mrwolfe',
version=VERSION,
description='Django Issue tracker & support system',
long_description=README,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: "
"Application Frameworks"
],
author='D.A.Dokter',
author_email='dokter@w20e.com',
license='beer-ware',
url='https://github.com/wyldebeast-wunderliebe/mrwolfe/',
keywords='django issue tracker support',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
tests_require=REQUIRES,
test_suite="mrwolfe",
entry_points=""
)