This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (50 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '2.2.dev0'
long_description = '\n\n'.join([
open('README.md').read(),
open('CONTRIBUTORS.md').read(),
open('CHANGES.md').read(),
])
setup(
name='bobtemplates.sixfeetup',
version=version,
description="Unified buildout template for Plone projects.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Plone",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
keywords='web plone zope skeleton project buildout',
author='Six Feet Up, Inc.',
author_email='info@sixfeetup.com',
url='https://github.com/sixfeetup/bobtemplates.sixfeetup',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'mr.bob',
],
extras_require={
'test': [
'nose',
'nose-selecttests',
'scripttest',
'six',
'unittest2',
]
},
entry_points={},
)