-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (21 loc) · 853 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name = "Media Mapper",
version = "0.1",
packages = find_packages(),
include_package_data = True,
author = "Thomas Grange",
author_email = "[email protected]",
description = "Plug photos and videos from facebook, youtube, vimeo, dailymotion and many others..",
license = "Apache",
keywords = "python django facebook youtube dailymoion vimeo photos videos",
url = "http://github.com/sem-io/django-mediamapper",
install_requires = ['BeautifulSoup>=3.2.0', 'oauth2', 'elementtree'],
classifiers = [
'Development Status :: 0.1 - Early Alpha',
'Environment :: Unix-like Systems',
'Intended Audience :: Developers, Project managers, Sys admins',
'Programming Language :: Python',
'Operating System :: Unix-like',
],
)