This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
68 lines (58 loc) · 1.88 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
67
68
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import glhooks
with open("README.rst") as readme:
with open("CHANGELOG.rst") as changelog:
long_description = readme.read() + "\n\n" + changelog.read()
setup(
name="glhooks",
version=glhooks.__version__,
description="Service for automatic updating of git repositories from GitLab.",
long_description=long_description,
author="Michal Belica",
author_email="[email protected]",
url="https://github.com/miso-belica/gitlab-webhooks",
license="Apache License, Version 2.0",
keywords=[
"Git",
"GitLab",
"webhook",
"hook",
],
install_requires=[
"docopt>=0.6.1,<0.7",
],
tests_require=[
"nose",
"coverage",
],
test_suite="nose.collector",
packages=[
"glhooks",
"glhooks.mailer",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Version Control",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
],
)