forked from vandrongelen/django-simplesite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.01 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
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distribute_setup import use_setuptools
use_setuptools('0.6.10')
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
try:
REQUIREMENTS = open('requirements.txt').lines()
except:
REQUIREMENTS = None
setup(
name='django-simplesite',
version='0.1',
description='A simple pseudo-static site app with menu, submenu and pages.',
long_description=README,
install_requires=REQUIREMENTS,
author='Mathijs de Bruin',
author_email='[email protected]',
url='http://github.com/dokterbob/django-simplesite',
packages = find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)