-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (39 loc) · 1.16 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
import os
from setuptools import setup
from setuptools import find_packages
version = '2.0.dev0'
shortdesc = 'Shipping'
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'CHANGES.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'LICENSE.rst')).read()
setup(
name='bda.plone.shipping',
version=version,
description=shortdesc,
long_description=longdesc,
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
author='BlueDynamics Alliance',
author_email='dev@bluedynamics.com',
license='GNU General Public Licence',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['bda', 'bda.plone'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.deferredimport',
],
extras_require={
'test': [
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)