-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·44 lines (38 loc) · 1.24 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
38
39
40
41
42
43
44
# coding: utf-8
import os
from setuptools import find_packages, setup
# not so bad: http://joebergantine.com/blog/2015/jul/17/releasing-package-pypi/
version = __import__("ckeditor_link").__version__
def read(fname):
# read the contents of a text file
with open(os.path.join(os.path.dirname(__file__), fname)) as file:
content = file.read()
return content
setup(
name="django-ckeditor-link",
version=version,
url="http://github.com/bnzk/django-ckeditor-link",
license="MIT",
platforms=["OS Independent"],
description=read("DESCRIPTION"),
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Ben Stähli",
author_email="[email protected]",
packages=find_packages(),
install_requires=(
# 'Django>=1.3,<1.5', # no need to limit while in development
"Django>=1.11",
),
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
)