-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
37 lines (35 loc) · 1.01 KB
/
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
35
36
37
from mediasync 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='[email protected]',
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',
],
)