-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 915 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
36
37
38
39
40
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
version = '1.0.dev0'
install_requires = [
'ColanderAlchemy',
'Kotti',
]
setup(
name='sverbois_directory',
version=version,
description="A directory for Kotti",
classifiers=[
"Programming Language :: Python :: 2.7",
"Framework :: Kotti",
],
author="Sébastien Verbois",
author_email='[email protected]',
url='https://github.com/sverbois/sverbois_directory',
keywords='kotti pyramid sqlalchemy bootstrap',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=[],
dependency_links=[],
entry_points={
'fanstatic.libraries': [
'sverbois_directory = sverbois_directory.fanstatic:library',
],
},
extras_require={},
)