forked from feincms/feincms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (29 loc) · 1.09 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
#!/usr/bin/env python
from distutils.core import setup
import os
import setuplib
packages, package_data = setuplib.find_packages('feincms')
setup(name='FeinCMS',
version=__import__('feincms').__version__,
description='Django-based Page CMS and CMS building toolkit.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Matthias Kestenholz',
author_email='[email protected]',
url='http://github.com/feincms/feincms/',
license='BSD License',
platforms=['OS Independent'],
packages=packages,
package_data=package_data,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)