forked from iktakahiro/hipchatpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 911 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 911 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__author__ = 'Takahiro Ikeuchi'
setup(
name="hipchatpy",
version="0.1.15",
py_modules=['hipchatpy'],
package_dir={'': 'hipchatpy'},
install_requires=open('requirements.txt').read().splitlines(),
description="Simple HipChat client library",
long_description=open('README.txt').read(),
author='Takahiro Ikeuchi',
author_email='takahiro.ikeuchi@gmail.com',
url='https://github.com/iktakahiro/hipchatpy',
keywords=["HipChat", "HipChat Client"],
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.4",
"Topic :: System :: Logging",
"Topic :: Communications :: Chat"
],
entry_points={
"console_scripts": [
"hipchatpy=hipchatpy:main",
],
},
)