-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.05 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
# Copyright 2015-2016, Truveris Inc. All Rights Reserved.
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, "README.rst")).read()
CHANGES = open(os.path.join(here, "CHANGES.txt")).read()
except IOError:
README = CHANGES = ""
setup(
name="hg-mattermost",
version="0.1",
description="Mercurial to Mattermost hook",
long_description=README + "\n\n" + CHANGES,
author="Truveris Inc.",
author_email="[email protected]",
url="https://github.com/truveris/hg-mattermost",
license="LICENSE",
install_requires=[
"requests",
"hgapi",
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Software Development :: Version Control",
],
scripts=[
"hg-mattermost",
],
packages=find_packages(),
)