forked from adamchainz/django-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (54 loc) · 1.93 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (54 loc) · 1.93 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
# -*- encoding:utf-8 -*-
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
import codecs
import os
import re
from setuptools import find_packages, setup
def get_version(filename):
with codecs.open(filename, 'r', 'utf-8') as fp:
contents = fp.read()
return re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents).group(1)
version = get_version(os.path.join('django_mysql', '__init__.py'))
with codecs.open('README.rst', 'r', 'utf-8') as readme_file:
readme = readme_file.read()
with codecs.open('HISTORY.rst', 'r', 'utf-8') as history_file:
history = history_file.read().replace('.. :changelog:', '')
setup(
name='django-mysql',
version=version,
description="Extensions to Django for use with MySQL/MariaDB",
long_description=readme + '\n\n' + history,
author="Adam Johnson",
author_email='me@adamj.eu',
url='https://github.com/adamchainz/django-mysql',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
install_requires=[
'Django>=1.8',
],
license="BSD",
zip_safe=False,
keywords=['Django', 'MySQL', 'MariaDB'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database',
],
)