forked from quokkaproject/quokka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import quokka
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
dependency_links = []
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Flask",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2.6",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
'Topic :: Software Development :: Libraries :: Python Modules']
try:
long_description = open('README.rst').read()
except:
long_description = quokka.__description__
setup(name='quokka',
version=quokka.__version__,
description=quokka.__description__,
long_description=long_description,
classifiers=classifiers,
keywords='quokka cms flask publishing mongodb',
author=quokka.__author__,
author_email=quokka.__email__,
url='http://quokkaproject.org',
download_url="https://github.com/rochacbruno/quokka/tarball/master",
license=quokka.__license__,
packages=find_packages(exclude=('doc', 'docs',)),
namespace_packages=['quokka'],
package_dir={'quokka': 'quokka'},
install_requires=REQUIREMENTS,
dependency_links=dependency_links,
scripts=['quokka/bin/quokka-admin.py'],
include_package_data=True,
test_suite='runtests')