-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (70 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from setuptools import setup, find_packages
import os
version = '0.3.1.dev0'
setup(name='gites.core',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Affinitic',
author_email='[email protected]',
url='https://github.com/gitesdewallonie/gites.core',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['gites'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'lovely.memcached',
'micawber',
'Products.LinguaPlone',
'Products.LocalFS',
'affinitic.caching',
'affinitic.pwmanager',
'collective.cookiecuttr',
'collective.fb',
'collective.js.jqueryui',
'collective.monkeypatcher',
'collective.z3cform.datepicker',
'five.grok',
'gites.db',
'gites.locales',
'collective.captcha',
'mobile.sniffer',
'pygeocoder',
'monet.mapsviewlet',
'plone.z3cform',
'sc.social.like',
'plone.widgets',
'z3c.form',
'z3c.table',
'gites.map',
'z3c.sqlalchemy',
'Products.SQLAlchemyDA',
'z3c.unconfigure',
'beautifulsoup4',
'zope.ramcache',
'gites.skin',
'requests[security]',
],
extras_require=dict(
test=[
'affinitic.testing',
'unittest2',
'zope.testing',
'plone.app.testing'],
scripts=[]),
entry_points={
'console_scripts': [
'groupement_update = gites.core.scripts.groupement_update:main',
'geometry_columns_update = gites.core.scripts.geometry_columns_update:main',
'sort_order_update = gites.core.scripts.sort_order_update:main',
]}
)