forked from AGoodId/django-s3-collectstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 855 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
from distutils.core import setup
import setuptools
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-s3-collectstatic",
version="1.0",
description="",
author="AGoodId",
author_email="teknik@agoodid.com",
maintainer="AGoodId",
maintainer_email="teknik@agoodid.com",
url="https://github.com/agoodid/django-s3-collectstatic",
license="MIT",
packages=[
"django_s3_collectstatic",
"django_s3_collectstatic.management",
"django_s3_collectstatic.management.commands",
],
long_description=read("README.markdown"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
)