forked from fschulze/mr.developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.36 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
38
39
40
41
42
43
44
from setuptools import setup
import os, sys
version = '1.17'
install_requires = [
'setuptools',
'zc.buildout',
'argparse',
]
if sys.version_info < (2, 5):
install_requires.append('elementtree')
setup(name='mr.developer',
version=version,
description="A zc.buildout extension to ease the development of large projects with lots of packages.",
long_description=open("README.txt").read() + "\n\n" +
open(os.path.join("docs", "HELP.txt")).read() +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Framework :: Buildout",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Florian Schulze',
author_email='florian.schulze@gmx.net',
url='http://github.com/fschulze/mr.developer',
license='BSD',
packages=['mr', 'mr.developer'],
package_dir = {'': 'src'},
namespace_packages=['mr'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points="""
[console_scripts]
develop = mr.developer.develop:develop
[zc.buildout.extension]
default = mr.developer.extension:extension
""",
)