-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
58 lines (51 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
#This is just a work-around for a Python2.7 issue causing
#interpreter crash at exit when trying to log an info message.
try:
import logging
import multiprocessing
except:
pass
import sys
py_version = sys.version_info[:2]
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
testpkgs=[]
dependency_links = []
install_requires=[
"Flask",
"pymongo<=2.8.1",
"simplejson",
"Werkzeug",
"requests",
"Pillow",
"yuicompressor",
"fabric",
"click"
]
setup(
name='bombolone',
version='0.3.4',
description='Bombolone is a tasty Content Management System for Python based on Flask',
author='Leonardo Zizzamia',
author_email='[email protected]',
packages=find_packages(),
dependency_links=dependency_links,
install_requires=install_requires,
include_package_data=True,
package_data={'bombolone': ['static/*/*/*/*/*',
'data/*/*/*/*/*/*',
'dump/*/*',
'templates/*/*/*']},
tests_require=testpkgs,
entry_points={
'console_scripts': [
'bombolone = bombolone:main'
],
},
zip_safe=False
)