File: setup.py

package info (click to toggle)
git-build-recipe 0.3.4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 280 kB
  • ctags: 453
  • sloc: python: 3,353; makefile: 4
file content (53 lines) | stat: -rwxr-xr-x 1,728 bytes parent folder | download | duplicates (3)
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
#! /usr/bin/env python3

# Copyright 2015 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify it 
# under the terms of the GNU General Public License version 3, as published 
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but 
# WITHOUT ANY WARRANTY; without even the implied warranties of 
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
# PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along 
# with this program.  If not, see <http://www.gnu.org/licenses/>.

from setuptools import setup

requires = [
    'python-dateutil',
    'python-debian',
    ]
test_requires = [
    'fixtures',
    'testtools',
    ]

setup(
    name='git-build-recipe',
    version='0.1',
    packages=['gitbuildrecipe', 'gitbuildrecipe.tests'],
    entry_points={
        'console_scripts': ['git-build-recipe = gitbuildrecipe.main:main'],
        },
    zip_safe=False,
    maintainer='Colin Watson',
    maintainer_email='cjwatson@ubuntu.com',
    description='git-build-recipe',
    license='GPL v3',
    url='https://launchpad.net/git-build-recipe',
    download_url='https://launchpad.net/git-build-recipe/+download',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3',
        'Operating System :: OS Independent',
        'Programming Language :: Python 3',
        ],
    install_requires=requires,
    tests_require=test_requires,
    extras_require={"test": test_requires},
    test_suite='gitbuildrecipe.tests',
    )