forked from jespino/django-lot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.12 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
description = """
Django Login over Token.
"""
setup(
name = "django-lot",
url = "https://github.com/jespino/django-lot",
author = "Jesús Espino, Curtis Malone",
author_email = "jespinog@gmail.com, curtis@tinbrain.net",
version='0.2.5',
packages = [
"lot",
"lot.migrations",
],
description = description.strip(),
install_requires=['django >= 3.0', 'simplejson >= 3.3.0'],
setup_requires = [
'versiontools >= 1.8',
],
zip_safe=False,
include_package_data = False,
package_data = {},
test_suite = 'nose.collector',
tests_require = ['nose >= 1.2.1', 'django >= 3.0'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.0",
],
)