-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 813 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='tamarack',
version='0.1.0',
description='A bot for automating common pull request tasks on GitHub.'
'Tamarack is specifically designed for use with the SaltStack '
'repositories.',
author='Nicole Thomas',
author_email='[email protected]',
url='https://github.com/rallytime/tamarack',
license="http://www.apache.org/licenses/LICENSE-2.0",
packages=['tamarack'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'tornado>=4.5.2,<5.0',
],
)