-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 813 Bytes
/
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
from setuptools import setup, find_packages
version = '1.1'
setup(name='Products.ATExtensions',
version=version,
description="This package provides some further fields and widgets for Archetypes.",
long_description=open("README.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='',
author='Raphael Ritz',
author_email='raphael.ritz@gmail.com',
url='http://pypi.python.org/pypi/Products.ATExtensions',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
)