forked from Air-Mark/djangocms-filer-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (28 loc) · 980 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
25
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup, find_packages
djangocms_filer_video = __import__('djangocms_filer_video')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
CHANGES = read('CHANGES.rst')
setup(
name='djangocms-filer-video',
packages=find_packages(),
version=djangocms_filer_video.get_version(),
author='Mark Trifonov',
author_email='[email protected]',
url='https://github.com/Air-Mark/djangocms-filer-video',
description=djangocms_filer_video.__doc__.strip(),
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
keywords=['django', 'djangocms' 'filer', 'video'],
install_requires=[
],
test_suite='nose.collector',
)