Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
8bcad17505 |
4 changed files with 57 additions and 0 deletions
14
MANIFEST.in
Normal file
14
MANIFEST.in
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
global-include *.cfg
|
||||||
|
global-include *.css *.js
|
||||||
|
global-include *.gif *.jpg *.png
|
||||||
|
global-include *.html
|
||||||
|
global-include *.md *.txt
|
||||||
|
global-include *.mht
|
||||||
|
global-include *.mo *.po *.pot
|
||||||
|
global-include *.pt
|
||||||
|
global-include *.xml
|
||||||
|
global-include *.zcml
|
||||||
|
global-include mime.types
|
||||||
|
|
||||||
|
graft cybertools/integrator/tests/data
|
||||||
|
graft cybertools/text/testfiles
|
7
README.md
Normal file
7
README.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Introduction
|
||||||
|
|
||||||
|
This is a set of utility libraries to be used mainly
|
||||||
|
with Zope 3 / bluebream and the web application platform
|
||||||
|
*loops*.
|
||||||
|
|
||||||
|
More information: see https://www.cyberconcepts.org.
|
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[egg_info]
|
||||||
|
tag_build = dev
|
||||||
|
tag_svn_revision = true
|
33
setup.py
Normal file
33
setup.py
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
import sys, os
|
||||||
|
|
||||||
|
version = '2.1.3'
|
||||||
|
|
||||||
|
setup(name='cybertools',
|
||||||
|
version=version,
|
||||||
|
description="cybertools: basic utilities for Zope3/bluebream/loops",
|
||||||
|
long_description="""\
|
||||||
|
""",
|
||||||
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
|
keywords='',
|
||||||
|
author='cyberconcepts.org team',
|
||||||
|
author_email='team@cyberconcepts.org',
|
||||||
|
url='https://www.cyberconcepts.org',
|
||||||
|
license='GPL',
|
||||||
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
||||||
|
include_package_data=True,
|
||||||
|
zip_safe=False,
|
||||||
|
install_requires=[
|
||||||
|
# -*- Extra requirements: -*-
|
||||||
|
#'lxml',
|
||||||
|
#'Pillow',
|
||||||
|
#'zope.app.catalog',
|
||||||
|
#'zope.app.file',
|
||||||
|
#'zope.app.intid',
|
||||||
|
#'zope.app.session',
|
||||||
|
#'zope.sendmail',
|
||||||
|
],
|
||||||
|
entry_points="""
|
||||||
|
# -*- Entry points: -*-
|
||||||
|
""",
|
||||||
|
)
|
Loading…
Add table
Reference in a new issue