-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.01 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
# -*- coding: utf-8 -*-
"""
<+ MODULE_NAME +>
Licensed under the <+ LICENSE +> license, see LICENCE.txt for more details.
Copyright by Affinitic sprl
$Id$
"""
from setuptools import setup, find_packages
setup(
name = "gites.ldapimport",
version = "0.2",
author = "Jean Francois Roche",
author_email = "[email protected]",
description = "Import files from db",
license = "GPL",
keywords = "Affinitic libraries",
url = 'http://svn.affinitic.be/python/gites.ldapimport',
classifiers = [
'Development Status :: 3 - Alpha',
"License :: OSI Approved"],
packages = find_packages(),
include_package_data = True,
namespace_packages = ['gites'],
zip_safe = False,
install_requires = [
'setuptools',
'sqlalchemy',
'psycopg2',
'pysqlite',
'python-ldap',
'zope.interface'
],
entry_points={
'console_scripts':[
'ldapSyncProprio = gites.ldapimport.importProprietaire:main',]}
)