-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (31 loc) · 1.07 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
from setuptools import setup, find_packages
from chamber.version import get_version
setup(
name="django-chamber",
version=get_version(),
description="Utilities library meant as a complement to django-is-core.",
author="Lubos Matl, Oskar Hollmann",
author_email="[email protected], [email protected]",
url="http://github.com/druids/django-chamber",
packages=find_packages(),
package_dir={"chamber": "chamber"},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Framework :: Django",
],
install_requires=[
'Django>=1.8',
'Unidecode>=0.04.17',
'pyprind>=2.11.0',
'six>=1.10.0',
'filemagic>=1.6',
],
)