-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.38 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.38 KB
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
from setuptools import find_packages, setup
setup(
name="django-pagelets",
version=__import__("pagelets").__version__,
author="Caktus Consulting Group",
author_email="solutions@caktusgroup.com",
packages=find_packages(exclude=["sample_project"]),
include_package_data=True,
url="https://github.com/caktus/django-pagelets/",
license="BSD",
description="Simple, flexible app for integrating static, unstructured "
"content in a Django site",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
],
long_description=open("README.rst").read(),
zip_safe=False, # because we're including media that Django needs
install_requires=[
"django-selectable>=1.2.1",
"django-taggit>=0.12.1",
],
)