Commit 900b1328 authored by Vincent Pelletier's avatar Vincent Pelletier

Eggify NEO.

Credit: Leonardo Rochael Almeida
Indentation of setup.py by me.


git-svn-id: https://svn.erp5.org/repos/neo/trunk@2264 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent a413f519
graft tools
include neoadmin neoctl neomaster neomigrate neostorage neo.conf README TODO
global-exclude *~
from setuptools import setup, find_packages
setup(name='neo',
version='0.1.0',
description='Distributed, redundant and transactional storage for ZODB',
author='NEOPPOD',
author_email='neo-dev@erp5.org',
url='http://www.neoppod.org/',
license="GPL 2",
packages=find_packages(),
package_dir={'neo': 'neo'},
install_requires=[
'ZODB3',
],
extras_require={
'storage': ['MySQL-python'],
'test': ['MySQL-python', 'mock'],
},
entry_points={
'console_scripts': [
'neoadmin=neo.scripts.neoadmin:main',
'neoctl=neo.scripts.neoctl:main',
'neomaster=neo.scripts.neomaster:main',
'neomigrate=neo.scripts.neomigrate:main',
'neostorage=neo.scripts.neostorage:main',
],
},
zip_safe=False,
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment