|
Revision 819, 0.8 kB
(checked in by sgillies, 2 years ago)
|
Refactor interfaces and implementations, set native EOL style
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
from setuptools import setup, find_packages |
|---|
| 2 |
import sys, os |
|---|
| 3 |
|
|---|
| 4 |
version = '0.1' |
|---|
| 5 |
|
|---|
| 6 |
setup(name='Bibliomane', |
|---|
| 7 |
version=version, |
|---|
| 8 |
description="", |
|---|
| 9 |
long_description="""\ |
|---|
| 10 |
""", |
|---|
| 11 |
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 12 |
classifiers=[ |
|---|
| 13 |
"Framework :: Zope3", |
|---|
| 14 |
"Programming Language :: Python", |
|---|
| 15 |
"Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 16 |
], |
|---|
| 17 |
keywords='', |
|---|
| 18 |
author='', |
|---|
| 19 |
author_email='', |
|---|
| 20 |
url='', |
|---|
| 21 |
license='GPL', |
|---|
| 22 |
packages=find_packages(exclude=['ez_setup']), |
|---|
| 23 |
namespace_packages=['bibliomane'], |
|---|
| 24 |
include_package_data=True, |
|---|
| 25 |
zip_safe=False, |
|---|
| 26 |
install_requires=[ |
|---|
| 27 |
'setuptools', |
|---|
| 28 |
# -*- Extra requirements: -*- |
|---|
| 29 |
], |
|---|
| 30 |
entry_points=""" |
|---|
| 31 |
# -*- Entry points: -*- |
|---|
| 32 |
""", |
|---|
| 33 |
) |
|---|