This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.64 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
# -*- coding: utf-8 -*-
"""
This module contains the tool of collective.recipe.cmd
"""
from setuptools import find_packages
from setuptools import setup
name = 'birdhousebuilder.recipe.conda'
version = '0.4.0'
description = 'A Buildout recipe to install conda packages'
long_description = (
open('README.rst').read() + '\n' +
open('AUTHORS.rst').read() + '\n' +
open('CHANGES.rst').read()
)
entry_points = '''
[zc.buildout]
default = %(name)s:Recipe
[zc.buildout.uninstall]
default = %(name)s:uninstall
''' % globals()
reqs = [line.strip() for line in open('requirements.txt')]
tests_reqs = [line.strip() for line in open('requirements-dev.txt')]
setup(name=name,
version=version,
description=description,
long_description=long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Framework :: Buildout',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
],
keywords='buildout recipe conda anaconda birdhouse',
author='Birdhouse',
author_email="[email protected]",
url='https://github.com/bird-house/birdhousebuilder.recipe.conda',
license='Apache License 2',
install_requires=reqs,
extras_require=dict(tests=tests_reqs),
entry_points=entry_points,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['birdhousebuilder', 'birdhousebuilder.recipe'],
include_package_data=True,
zip_safe=False,
)