-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 990 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 990 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
from redtube import __version__
here = abspath(dirname(__file__))
setup(
name='redtube',
version=__version__,
license="BSD",
description="Python module to access RedTube API",
long_description="".join(open(join(here, 'README.rst')).readlines()),
author="Don Ramon",
url="https://github.com/don-ramon/redtube",
py_modules=["redtube"],
entry_points={'console_scripts': [
'redtube-search = redtube:main'
]},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.6",
"License :: OSI Approved :: BSD License",
"Environment :: Web Environment",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Education",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Multimedia :: Video"
],
keywords='redtube api client'
)