-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (51 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·57 lines (51 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
version = "0.0.0"
long_description = ""
try:
long_description = file('README.md').read()
except Exception:
pass
license = ""
try:
license = file('LICENSE').read()
except Exception:
pass
setup(
name='python-livecodingtv',
version=version,
description='''\
This package wraps the Livecoding.tv REST API in Python.
''',
author='Pablo Saavedra',
author_email='saavedra.pablo@gmail.com',
url='http://github.com/psaavedra/python-livecodingtv',
packages=find_packages(),
package_data={
},
scripts=[
],
zip_safe=False,
install_requires=[
"requests",
],
data_files=[
('/usr/share/doc/python-livecodingtv/examples', [
'examples/lctv-chat',
'examples/lctv-remote-app',
'examples/lctv-remote-app-example.cfg',
]),
# ('/etc/init.d', ['init-script'])
],
download_url='https://github.com/psaavedra/python-livecodingtv/zipball/master',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=long_description,
license=license,
keywords="python lctv livecodingtv livecoding api rest ouath2",
)