|
1 | 1 | #!/usr/bin/env python
|
2 |
| -# -*- coding: utf-8 -*- |
3 |
| -from __future__ import unicode_literals |
4 |
| - |
5 | 2 | from setuptools import setup, find_packages
|
6 | 3 | from djng import __version__
|
7 | 4 |
|
|
19 | 16 | 'Programming Language :: Python',
|
20 | 17 | 'Topic :: Software Development :: Libraries :: Python Modules',
|
21 | 18 | 'Development Status :: 5 - Production/Stable',
|
22 |
| - 'Programming Language :: Python :: 2.7', |
23 |
| - 'Programming Language :: Python :: 3.4', |
24 | 19 | 'Programming Language :: Python :: 3.5',
|
25 | 20 | 'Programming Language :: Python :: 3.6',
|
26 | 21 | 'Programming Language :: Python :: 3.7',
|
27 |
| - 'Framework :: Django :: 1.10', |
28 |
| - 'Framework :: Django :: 1.11', |
29 |
| - 'Framework :: Django :: 2.0', |
| 22 | + 'Programming Language :: Python :: 3.8', |
30 | 23 | 'Framework :: Django :: 2.1',
|
31 | 24 | 'Framework :: Django :: 2.2',
|
| 25 | + 'Framework :: Django :: 3.0', |
32 | 26 | ]
|
33 | 27 |
|
34 | 28 | setup(
|
|
37 | 31 | author='Jacob Rief',
|
38 | 32 |
|
39 | 33 | description=DESCRIPTION,
|
40 |
| - install_requires=['django>=1.10'], |
| 34 | + install_requires=['django>=2.1'], |
41 | 35 | long_description=long_description,
|
42 | 36 | long_description_content_type='text/markdown',
|
43 | 37 | url='https://github.com/jrief/django-angular',
|
|
0 commit comments