|
Revision 39, 0.8 kB
(checked in by sylvain, 2 years ago)
|
Fixed wrong setup.py and usless import in test
|
| Line | |
|---|
| 1 |
""" |
|---|
| 2 |
Atom Publishing Protocol implementation. |
|---|
| 3 |
""" |
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
from distutils.command.install import INSTALL_SCHEMES |
|---|
| 7 |
from setuptools import setup |
|---|
| 8 |
|
|---|
| 9 |
doclines = __doc__.split("\n") |
|---|
| 10 |
|
|---|
| 11 |
for scheme in INSTALL_SCHEMES.values(): |
|---|
| 12 |
scheme['data'] = scheme['purelib'] |
|---|
| 13 |
|
|---|
| 14 |
setup(name = "amplee", |
|---|
| 15 |
version = '0.1.0', |
|---|
| 16 |
description = doclines[0], |
|---|
| 17 |
maintainer = "Sylvain Hellegouarch", |
|---|
| 18 |
maintainer_email = "sh@defuze.org", |
|---|
| 19 |
url = "http://trac.defuze.org/browser/oss/amplee/trunk", |
|---|
| 20 |
download_url = "http://www.defuze.org/oss/amplee/amplee-0.1.0-py2.4.egg", |
|---|
| 21 |
packages = ["amplee", "amplee.atompub", "amplee.storage"], |
|---|
| 22 |
platforms = ["any"], |
|---|
| 23 |
license = 'BSD', |
|---|
| 24 |
long_description = "\n".join(doclines[2:]), |
|---|
| 25 |
install_requires= ['atomixlib'], |
|---|
| 26 |
) |
|---|
| 27 |
|
|---|