This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
executable file
·58 lines (51 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
#
# Copyright (c) 2009-2013 Guilherme Gondim and contributors
#
# This file is part of Django Smuggler.
#
# Django Smuggler is free software under terms of the GNU Lesser
# General Public License version 3 (LGPLv3) as published by the Free
# Software Foundation. See the file README for copying conditions.
import codecs
import os
import sys
from setuptools import find_packages, setup
# Dynamically calculate the version based on smuggler.VERSION.
version = __import__('smuggler').get_version()
def read(filepath):
return codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='django-smuggler',
version=version,
description=('Pluggable application for Django that helps you to '
'import/export fixtures via the administration interface'),
long_description=read(os.path.join(os.path.dirname(__file__), 'README.rst')),
keywords='django apps tools backup fixtures admin',
author='Guilherme Gondim',
author_email='[email protected]',
maintainer='Guilherme Gondim',
maintainer_email='[email protected]',
license='GNU Lesser General Public License v3 or later (LGPLv3+)',
url='http://github.com/semente/django-smuggler',
download_url='http://github.com/semente/django-smuggler/downloads',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
tests_require=[],
)