-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.63 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.63 KB
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
from setuptools import setup
if __name__ == "__main__":
setup(
name='outlyer.plugin-helper',
description='Outlyer plugin helper',
version='0.0.11',
license='MIT',
url='https://github.com/outlyerapp/plugin_helper',
download_url='https://github.com/outlyerapp/plugin_helper/archive/0.9.tar.gz',
author='Colin Hemmings',
author_email='colin.hemmings@outlyer.com',
keywords=['outlyer', 'plugin', 'helper'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'docker==2.2.0',
'requests==2.12.4',
'pymongo==2.6.3'
],
packages=[
'outlyer',
'outlyer.plugin_helper',
'outlyer.plugin_helper.container'
],
)