File: setup.py

package info (click to toggle)
git-ubuntu 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,688 kB
  • sloc: python: 13,378; sh: 480; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 838 bytes parent folder | download
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
from setuptools import setup
from gitubuntu.version import VERSION

setup(name='gitubuntu',
    version=VERSION,
    packages=['gitubuntu'],
    entry_points={
        'console_scripts': [
            'git-ubuntu = gitubuntu.__main__:main'
        ],
    },
    include_package_data=True,
	url="https://code.launchpad.net/git-ubuntu",
	maintainer="Ubuntu Server Team",
	maintainer_email="ubuntu-distributed-devel@lists.ubuntu.com",

    install_requires=[
        'argcomplete',
        'cachetools',
        'python-debian',
        'pygit2',
        'launchpadlib',
        'pylint',
        'SecretStorage',
        'setuptools',
        'keyring',
        'keyrings.alt',
        'lazr.restfulclient',
        'pytest',
        'pytest-cov',
        'systemd-python',
        'tenacity',
        'ubuntutools',
        'zmq',
    ]
)