-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.15 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.15 KB
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
# -*- coding: utf-8 -*-
"""
Configuration file used by setuptools. It creates 'egg', install all dependencies.
"""
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
#Dependencies - python eggs
install_requires = [
'setuptools',
'Django',
]
#Execute function to handle setuptools functionality
setup(name="django-model-admin-helper",
version="0.2.1",
description="Admin helpers",
long_description=read('README.rst'),
package_dir={'': 'src'},
py_modules = ['admin_helpers'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
author='Arpaso',
author_email='arvid@arpaso.com',
url='http://github.com/Arpaso/django-model-admin-helper',
download_url='http://github.com/Arpaso/django-model-admin-helper/tarball/0.1',
classifiers=(
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
),
)