forked from Aeron/PyFlowdock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (36 loc) · 1.06 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
# coding: utf-8
from setuptools import setup
setup(
name="pyflowdock",
version="0.3.35",
packages=[
'flowdock',
'flowdock.helpers',
],
package_dir={
'flowdock': 'flowdock'
},
scripts=[],
install_requires=['requests'],
package_data={
'': [],
},
author=u"Eugene “Aeron” Glybin",
author_email="aeron@aeron.cc",
url="https://github.com/Aeron/PyFlowdock",
description="Simple Flowdock APIs wrapper with some useful helpers. Only Push API (Team Inbox and Chat) and Streaming API available at this moment.",
license="LGPLv3",
keywords="flowdock api wrapper",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Communications",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
)