-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (27 loc) · 861 Bytes
/
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
AUTHOR = 'FND'
AUTHOR_EMAIL = '[email protected]'
NAME = 'spackager'
DESCRIPTION = 'compiler for creating single-page applications'
import os
from setuptools import setup, find_packages
from spackager import __version__
try:
long_desc = open(os.path.join(os.path.dirname(__file__), 'DESC')).read()
except IOError: # XXX: hacky way to avoid including DESC in distribution
long_desc = None
setup(
name = NAME,
version = __version__,
description = DESCRIPTION,
long_description = long_desc,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = 'http://pypi.python.org/pypi/%s' % NAME,
platforms = 'Posix; MacOS X; Windows',
packages = find_packages(exclude=['test']),
scripts = ['spac'],
#package_data = { '': ['DESC'] },
install_requires = ['pyquery'],
#include_package_data = True,
#zip_safe = False
)