-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 982 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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
version = '0.8'
f = open('README.txt')
readme = "".join(f.readlines())
f.close()
changes = open("CHANGES.txt").read()
setup(name='oc-js',
version=version,
description="javascript and zcml registrations required for opencore",
long_description=readme + changes,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
],
keywords='javascript zcml',
author='opencore dev team',
author_email='[email protected]',
url='http://www.coactivate.org/projects/opencore',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['opencore'],
include_package_data=True,
zip_safe=False,
install_requires=[
'topp.utils>=0.2.8.9',
],
entry_points="""
[distutils.commands]
zinstall = topp.utils.setup_command:zinstall
""",
)