-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1.63 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
# To build locally: python setup.py egg_info -RDb "" bdist_egg
# To release: python setup.py egg_info -RD sdist bdist_egg register upload
# To create a named release: python setup.py egg_info -RDb "a1" sdist bdist_egg register upload
# To release a dev build: python setup.py egg_info -rD sdist bdist_egg register upload
# See http://peak.telecommunity.com/DevCenter/setuptools#release-tagging-options for more information.
from setuptools import setup, find_packages
import os
setup(name='Products.Gloworm',
version='1.2',
description="A Firebug-like inspection tool for Plone",
long_description=open("README.rst").read() + "\n\n" +
open("CHANGES.rst").read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
author='WebLion Group, Penn State University',
author_email='[email protected]',
url='https://weblion.psu.edu/svn/weblion/weblion/Products.Gloworm/',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'plone.app.customerize>=1.1.2',
'archetypes.kss>=1.4.2'
],
entry_points="""
# -*- Entry points: -*-
""",
)