-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.37 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
import os
from setuptools import find_packages
from setuptools import setup
project = 'kotti_theme_spruce'
version = '0.1'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
setup(
name=project,
version=version,
description="Spruce Theme from http://bootswatch.com/spruce/ for Kotti",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Environment :: Web Environment",
"Framework :: Pylons",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: User Interfaces",
],
keywords='kotti theme',
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/disko/kotti_theme_spruce',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Kotti',
],
entry_points={
'fanstatic.libraries': [
'kotti_theme_spruce = kotti_theme_spruce:library',
],
},
)