forked from mariano/pyfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 938 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
27
28
29
30
31
#!/usr/bin/env python
from setuptools import setup
setup(name='python-pyfire',
version="0.3.4",
description="A Campfire API implementation in Python",
long_description="""\
Pyfire provides an easy to use, full featured implementation of the Campfire API
in Python.""",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='python campfire api',
author='Mariano Iglesias',
author_email='[email protected]',
url='https://github.com/mariano/pyfire',
license='MIT',
include_package_data=True,
zip_safe=True,
packages=['pyfire', 'pyfire/twistedx'],
install_requires=[
'twisted>=10.1.0',
'pyOpenSSL'
]
)