-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 873 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
import os
from setuptools import setup, find_packages
long_description = (
open('README.rst').read()
+ '\n' +
open('CHANGES.txt').read())
setup(name='pyramid_bowerstatic',
version='0.4.dev0',
description="BowerStatic integration for Pyramid",
long_description=long_description,
author="Marc Rijken",
author_email="[email protected]",
keywords='pyramid bowerstatic bower',
license="BSD",
url="https://github.com/mrijken/pyramid_bowerstatic",
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'bowerstatic >= 0.4',
],
extras_require = dict(
test=['pytest >= 2.0',
'pytest-cov',
'pyramid',
'WebTest >= 2.0.14'],
),
)