-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (26 loc) · 1 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import setuptools
setuptools.setup(
name="phabricator-emails",
version="0.0.1",
description="Send emails for events about Phabricator differentials",
url="https://github.com/mozilla-conduit/phabricator-emails",
author="Mozilla",
license="MPL 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
keywords="mozilla phabricator conduit",
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["phabricator-emails = phabricatoremails.cli:cli"]
},
)