-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.01 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
################################
import os
import xml.sax.saxutils
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup (
name='zopen.frs',
version='1.2.2',
author = "panjy",
author_email = "[email protected]",
description = "zopen frs management",
long_description=README,
license = "Private",
keywords = "zope3 z3c rpc server client operation",
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
],
url = 'http://pypi.zopen.cn/zopen.frs',
packages = find_packages(),
include_package_data = True,
namespace_packages= ['zopen', ],
install_requires = [
'setuptools',
# tests only
'zope.datetime',
],
zip_safe = False,
entry_points = """
"""
)