-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
66 lines (58 loc) · 1.87 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
57
58
59
60
61
62
63
64
65
66
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '1.1.1.dev0'
long_description = '\n'.join([
'.. contents::\n',
read('README.rst'),
read('docs', 'HISTORY.rst')
])
tests_require = [
'zc.buildout[test]',
'zope.testing',
'mr.scripty',
]
setup(
name='collective.recipe.environment',
version=version,
description='Buildout recipe to set and get environment variables.',
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Framework :: Buildout :: Recipe',
'Framework :: Buildout',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
],
keywords='zc.buildout buildout recipe',
author='Rafael Oliveira',
author_email='[email protected]',
url='https://github.com/collective/collective.recipe.environment',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective', 'collective.recipe'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zc.buildout',
],
tests_require=tests_require,
extras_require={'tests': tests_require},
test_suite='collective.recipe.environment.tests.test_docs.test_suite',
entry_points={
'zc.buildout': [
'default = collective.recipe.environment:Recipe',
]
},
)