forked from lucuma/Shake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (71 loc) · 2.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# -*- coding: utf-8 -*-
import io
import os
import re
from setuptools import setup
PACKAGE = 'shake'
THIS_DIR = os.path.dirname(__file__).rstrip('/')
def get_path(*args):
return os.path.join(THIS_DIR, *args)
def read_from(filepath):
with io.open(filepath) as f:
source = f.read()
return source
def get_version():
data = read_from(get_path(PACKAGE, '__init__.py'))
version = re.search(r"__version__\s*=\s*'([^']+)'", data).group(1)
return version.encode('utf-8')
def find_package_data(root, include_files=None):
include_files = include_files or ['.gitignore',]
files = []
src_root = get_path(root).rstrip('/') + '/'
for dirpath, subdirs, filenames in os.walk(src_root):
path, dirname = os.path.split(dirpath)
if dirname.startswith(('.', '_')):
continue
dirpath = dirpath.replace(src_root, '')
for filename in filenames:
is_valid_filename = not (
filename.startswith('.') or
filename.endswith('.pyc')
)
include_it_anyway = filename in include_files
if is_valid_filename or include_it_anyway:
files.append(os.path.join(dirpath, filename))
return files
def find_packages_data(*roots):
return dict([(root, find_package_data(root)) for root in roots])
def get_requirements():
data = read_from(get_path('requirements.txt'))
lines = map(lambda s: s.strip(), data.splitlines())
return [l for l in lines if l and not l.startswith('#')]
def run_tests():
import sys, subprocess
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
setup(
name = 'Shake',
version = get_version(),
author = 'Juan-Pablo Scaletti',
author_email = '[email protected]',
packages = [PACKAGE],
package_data = find_packages_data(PACKAGE, 'tests'),
zip_safe = False,
url = 'http://github.com/lucuma/Shake',
license = 'MIT license (http://www.opensource.org/licenses/mit-license.php)',
description = 'A web framework mixed from the best ingredients',
long_description = read_from(get_path('README.rst')),
install_requires = get_requirements(),
classifiers = [
'Development Status :: 4 - Beta',
'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'
],
test_suite = '__main__.run_tests',
entry_points = {'console_scripts': ['shake = shake.cli:main']},
)