-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
50 lines (47 loc) · 1.54 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
from setuptools import setup, find_packages
version = '0.7.dev0'
setup(name='pyramid_fanstatic',
version=version,
description="pyramid tween for fanstatic",
long_description=(
open('README.rst').read()
+ '\n'
+ open('CHANGES.rst').read()
),
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"License :: OSI Approved :: MIT License",
],
keywords='pyramid fanstatic js css',
author='Gael Pasgrimaud',
author_email='[email protected]',
url='https://github.com/FormAlchemy/pyramid_fanstatic',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'pyramid',
'fanstatic',
],
extras_require={
"test": [
"js.jquery == 1.9.1", # We test on specific file names.
"webtest",
],
},
entry_points="""
# -*- Entry points: -*-
[pyramid.scaffold]
pyramid_fanstatic=pyramid_fanstatic.scaffolds:PyramidFanstaticTemplate
""",
)