-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
29 lines (27 loc) · 860 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
from setuptools import setup
long_description = open('README.md').read()
setup(
name="django-mediumeditor",
version='1.0.0',
packages=["mediumeditor"],
include_package_data=True,
description="Medium Editor widget for Django",
url="https://github.com/g3rd/django-mediumeditor",
author="Chad Shryock",
author_email="[email protected]",
license='MIT',
long_description=long_description,
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'django-appconf >= 1.0.2',
],
)