-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
executable file
·37 lines (33 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import sys, os
version = '1.0b3'
def get_long_desc():
toread = ['README.rst','HISTORY.txt']
return '\n\n'.join([open(x).read() for x in toread])
setup(name='openerp_bootstrap',
version=version,
description="Easy bootstrap for your OpenERP modules",
long_description=get_long_desc(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='OpenERP paster bootstrap',
author='Simone Orsi',
author_email='simone.orsi@abstract.it',
url='https://github.com/simahawk/openerp_bootstrap',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'PasteScript',
'Cheetah',
# -*- Extra requirements: -*-
],
entry_points="""
# These will declare what templates paster create command can find
# -*- Entry points: -*-
[paste.paster_create_template]
openerp_newmodule = openerp_bootstrap.newmodule:NewModule
openerp_webmodule = openerp_bootstrap.web:Web
""",
)