This repository was archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.21 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup
from hangups_cli.version import __version__
with open('README.rst') as f:
readme = f.read()
setup(
name="hangups_cli",
version=__version__,
description="A command line interface for hangups",
long_description=readme,
author="Jules Tamagnan (jtamagna)",
author_email="jtamagnan@gmail.com",
url="https://bitbucket.org/jtamagna/hangups_cli",
license="GNU GPLv3",
packages=["hangups_cli"],
entry_points={
"console_scripts": [
"hangups_cli=hangups_cli.__main__:main"
],
},
install_requires=[
"hangups>=0.3",
"argcomplete>=1.0.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Communications :: Chat"
]
)