-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·27 lines (26 loc) · 926 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
from setuptools import setup
setup(
name="django-random-queryset",
version="0.2.0",
author="Roman Remizov",
author_email="[email protected]",
license="MIT",
platforms=["any"],
description="Pull random records using Django ORM.",
long_description=open("README.rst").read(),
url="http://github.com/rremizov/django-random-queryset",
packages=["django_random_queryset"],
install_requires=["django>=3.2"],
test_suite="tests.run_tests.run_all",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)