forked from PhilipGarnero/django-foundation-filefield-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (25 loc) · 919 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
from setuptools import setup, find_packages
setup(
name='django-foundation-filefield-widget',
version=__import__('foundation_filefield_widget').__version__,
description=__import__('foundation_filefield_widget').__doc__,
long_description=open('README.rst').read(),
author='Philip Garnero',
author_email='[email protected]',
url='https://github.com/PhilipGarnero/django-foundation-filefield-widget',
license='MIT',
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
],
include_package_data=True,
zip_safe=False,
)