-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (35 loc) · 1.09 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 find_packages
from setuptools import setup
version = '0.2a1'
setup(
name='bobtemplates.kotti',
version=version,
description="mr.bob templates for Kotti development",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
],
keywords='',
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/Kotti/bobtemplates.kotti',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bobtemplates'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'mr.bob',
],
entry_points={},
)