-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
48 lines (43 loc) · 1.71 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
43
44
45
46
47
48
import os
from datetime import datetime
from setuptools import find_packages, setup
from version import get_git_version
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-minio-backend',
version=get_git_version(),
packages=find_packages(),
include_package_data=True,
license=f'MIT License | Copyright (c) {datetime.now().year} Kristof Daja',
description='The django-minio-backend provides a wrapper around the MinIO Python Library.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/theriverman/django-minio-backend',
author='Kristof Daja (theriverman)',
author_email='kristof@daja.hu',
install_requires=[
'Django>=3.2',
'minio>=7.2.8'
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)