-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 998 Bytes
/
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
from os.path import join, dirname
from setuptools import setup, find_packages
this_dir = dirname(__file__)
setup(
name = 'trix_extjshelpers',
description = 'trix_extjshelpers',
license = 'BSD',
author = 'TBD',
maintainer = 'Jonathan Ringstad',
maintainer_email = '[email protected]',
packages = find_packages( exclude=['ez_setup'] ),
install_requires = [
'setuptools',
'Django',
'devilry',
'devilry_theme',
'devilry_usersearch',
'djangorestframework'],
include_package_data = True,
long_description = open( join( this_dir, 'README.rst' ) ).read().strip(),
zip_safe = False,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)