-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.08 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
version = '1.0.dev2'
install_requires = [
'setuptools',
'crom',
'grokker',
'zope.interface',
]
tests_require = [
'pytest',
]
setup(name='cromlech.security',
version=version,
description="Security layer for Cromlech to handle user/group policies.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
],
keywords='cromlech security',
author='The Dolmen team',
author_email='dolmen@list.dolmen-project.org',
url='http://gitweb.dolmen-project.org',
license='ZPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['cromlech'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={'test': tests_require},
entry_points="""
# -*- Entry points: -*-
""",
)