-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (48 loc) · 1.26 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
# -*- coding: utf-8 -*-
"""
This module contains the tool of jarn.kommuner
"""
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '1.0'
long_description = (
read('README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n')
setup(name='jarn.kommuner',
version=version,
description="",
long_description=long_description,
classifiers=[
'Framework :: Plone',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
keywords='',
author='Jarn AS',
author_email='[email protected]',
url='http://svn.plone.org/svn/collective/',
license='GPL',
packages=find_packages(),
namespace_packages=['jarn', ],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'suds',
'plone.app.testing',
'plone.app.registry',
'collective.flag',
'collective.monkeypatcher',
'collective.contentgovernance',
'Products.ATBackRef',
],
entry_points="""
# -*- entry_points -*-
[z3c.autoinclude.plugin]
target = plone
""",
)