-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (57 loc) · 1.66 KB
/
setup.py
File metadata and controls
66 lines (57 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is subject to the terms and conditions defined in
# file 'LICENSE', which is part of this source code package.
#
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# See https://github.com/pybuilder/pybuilder/issues/56
del os.link
with open(os.path.join(os.path.dirname(__file__), 'VERSION'), 'r') as v:
VERSION = v.read()
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as readme:
README = readme.read()
setup(
name='django-replyify-oauth2',
version=VERSION,
description='Replyify OAuth2 consumer for Django',
long_description=README,
long_description_content_type='text/x-rst',
author='Replyify',
author_email='team@replyify.com',
url='https://replyify.com',
keywords=[
'replyify',
'oauth2',
'django'
],
packages=[
'replyify_oauth2',
'replyify_oauth2.migrations',
],
install_requires=[
'Django>=4.0',
'requests>=0.10.1',
],
scripts=[],
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
python_requires='~=3.10',
)