-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (33 loc) · 1.02 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
import os.path
from setuptools import find_packages, setup
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="trac-mattermost", version="0.3.1",
description="Trac notifications in Mattermost",
long_description=README + "\n\n" + CHANGES,
author="Truveris Inc.",
author_email="[email protected]",
url="http://github.com/truveris/trac-mattermost",
packages=find_packages(exclude=["*.tests*"]),
license="ISC License",
install_requires=[
"requests",
],
classifiers=[
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: Unix",
"Programming Language :: Python",
"Framework :: Trac",
"Topic :: Software Development :: Bug Tracking",
],
entry_points = {
"trac.plugins": [
"trac_mattermost = trac_mattermost",
],
},
)