-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 993 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
34
import re
import os.path
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__),
'django_lite', '__init__.py')) as init_py:
VERSION = re.search("__version__ = '([^']+)'", init_py.read()).group(1)
setup(
name='django-lite',
version=VERSION,
url='https://github.com/fmarco/django-lite',
license='MIT',
author='fmarco',
author_email='[email protected]',
description='A light version of Django.',
packages=['django_lite'],
zip_safe=False,
platforms=['OS Independent'],
install_requires=[
'django'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)