mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-05-21 02:41:53 +00:00
setup distutils
This commit is contained in:
parent
da22d8dffa
commit
4c5d212690
1 changed files with 22 additions and 0 deletions
22
setup.py
Normal file
22
setup.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name = 'django-embed-video',
|
||||
packages = find_packages(),
|
||||
version = '0.0.1',
|
||||
author = 'Juda Kaleta',
|
||||
author_email = 'juda.kaleta@gmail.com',
|
||||
url = '',
|
||||
description = 'Django template tags for YouTube and Vimeo',
|
||||
long_description = open('README').read(),
|
||||
classifiers = [
|
||||
'Framework :: Django',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python',
|
||||
'Topis :: Internet :: WWW/HTTP',
|
||||
],
|
||||
keywords = ['youtube', 'vimeo', 'video'],
|
||||
test_suite = 'embed_video.tests.tests',
|
||||
)
|
||||
Loading…
Reference in a new issue