-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 868 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
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name='django-radmin-console',
version='0.9',
license="BSD",
description = '',
author='Angel Medrano',
author_email='[email protected]',
url='https://github.com/asmedrano/django-radmin-console',
download_url='https://github.com/asmedrano/django-radmin-console/downloads',
include_package_data = True,
packages = ['radmin'],
classifiers=[
'Development Status::4- Beta',
'Environment :: Web Environment',
'Intended Audience :: Django Developers',
'License :: BSD License',
'Operating System :: OS independent',
'Programming Language :: Python',
'Framework :: Django',
]
)