[Neo-report] r2264 vincent - in /trunk: ./ MANIFEST.in setup.py

nobody at svn.erp5.org nobody at svn.erp5.org
Sat Aug 28 19:19:01 CEST 2010


Author: vincent
Date: Sat Aug 28 19:19:00 2010
New Revision: 2264

Log:
Eggify NEO.

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

Added:
    trunk/MANIFEST.in
    trunk/setup.py
Modified:
    trunk/   (props changed)

Propchange: trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Aug 28 19:19:00 2010
@@ -0,0 +1,2 @@
+dist
+*.egg-info

Added: trunk/MANIFEST.in
==============================================================================
--- trunk/MANIFEST.in (added)
+++ trunk/MANIFEST.in [iso-8859-1] Sat Aug 28 19:19:00 2010
@@ -0,0 +1,3 @@
+graft tools
+include neoadmin neoctl neomaster neomigrate neostorage neo.conf README TODO
+global-exclude *~

Added: trunk/setup.py
==============================================================================
--- trunk/setup.py (added)
+++ trunk/setup.py [iso-8859-1] Sat Aug 28 19:19:00 2010
@@ -0,0 +1,30 @@
+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 at 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,
+)
+





More information about the Neo-report mailing list