|
Revision 140
(checked in by johnny, 2 years ago)
|
Fixed bug in t:replace of non-node items, fixed py.test 1.2 support, fixed
some issues in setup, removed apigen (project is dead, hopefully new one soon).
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
from setuptools import setup, find_packages |
|---|
| 2 |
import os |
|---|
| 3 |
|
|---|
| 4 |
here = os.path.dirname(__file__) |
|---|
| 5 |
version = open(os.path.join(here, 'version.txt')).read().strip() |
|---|
| 6 |
long_description = open(os.path.join(here, 'doc/README.txt')).read() |
|---|
| 7 |
|
|---|
| 8 |
setup(name='templess', |
|---|
| 9 |
version=version, |
|---|
| 10 |
description="Templess templating system", |
|---|
| 11 |
long_description=long_description, |
|---|
| 12 |
|
|---|
| 13 |
classifiers=['Development Status :: 3 - Alpha', |
|---|
| 14 |
'Environment :: Web Environment', |
|---|
| 15 |
'Intended Audience :: Developers', |
|---|
| 16 |
'License :: OSI Approved :: Zope Public License', |
|---|
| 17 |
'Programming Language :: Python', |
|---|
| 18 |
'Operating System :: OS Independent', |
|---|
| 19 |
'Topic :: Internet :: WWW/HTTP', |
|---|
| 20 |
], |
|---|
| 21 |
keywords="templess", |
|---|
| 22 |
author="Guido Wesdorp", |
|---|
| 23 |
author_email="johnny@johnnydebris.net", |
|---|
| 24 |
url="http://templess.johnnydebris.net/", |
|---|
| 25 |
package_dir={'templess': '.'}, |
|---|
| 26 |
packages=['templess'], |
|---|
| 27 |
include_package_data=True, |
|---|
| 28 |
zip_safe=False, |
|---|
| 29 |
install_requires=['setuptools', |
|---|
| 30 |
], |
|---|
| 31 |
entry_points=""" |
|---|
| 32 |
# Add entry points here |
|---|
| 33 |
""", |
|---|
| 34 |
) |
|---|