-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·66 lines (54 loc) · 1.9 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
59
60
61
62
63
64
65
66
import io
import os
import re
import sys
from setuptools import setup, find_packages
PATH_BASE = os.path.dirname(__file__)
PACKAGE_NAME = 'django-dunder'
PACKAGE_DIR = 'django_dunder'
def read_file(fpath):
"""Reads a file within package directories."""
with io.open(os.path.join(PATH_BASE, fpath)) as f:
return f.read()
def get_version():
"""Returns version number, without module import (which can lead to
ImportError if some dependencies are unavailable before install."""
contents = read_file(os.path.join(PACKAGE_DIR, '__init__.py'))
version = re.search('VERSION = \(([^)]+)\)', contents)
version = version.group(1).replace(', ', '.').strip()
return version
setup(
name=PACKAGE_NAME,
version=get_version(),
url='http://github.com/jayvdb/' + PACKAGE_NAME,
description='Reusable Django app to automate dunders `__repr__` and `__str__`',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
license='MIT',
author='John Mark Vandenberg',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite=PACKAGE_DIR + '.tests',
tests_require=[
'pytest-djangoapp',
'django-fake-model',
'django-nine',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)