forked from bulv1ne/CanIStreamIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 731 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 731 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
from setuptools import setup
setup(
name='CanIStreamIt',
version='0.1',
url='https://github.com/Bulv1ne/CanIStreamIt',
license='MIT',
author='Niels Lemmens',
author_email='draso.odin@gmail.com',
description='Can I Stream It api',
packages=['canistreamit'],
platforms='any',
install_requires=[
'requests>=2.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)