mirror of
https://github.com/kennethreitz-archive/django-mediasync.git
synced 2026-06-05 07:26:14 +00:00
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
from mediasync.core import __version__
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
|
|
readme = f.read()
|
|
f.close()
|
|
|
|
setup(
|
|
name='django-mediasync',
|
|
version=__version__,
|
|
description='Django static media development and distribution tools',
|
|
long_description=readme,
|
|
author='Jeremy Carbaugh',
|
|
author_email='jcarbaugh@sunlightfoundation.com',
|
|
url='http://github.com/sunlightlabs/django-mediasync/',
|
|
packages=find_packages(),
|
|
package_data={
|
|
'mediasync': [
|
|
'tests/media/*/*',
|
|
]
|
|
},
|
|
install_requires=[
|
|
'boto',
|
|
],
|
|
license='BSD License',
|
|
platforms=["any"],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Environment :: Web Environment',
|
|
],
|
|
)
|