-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·98 lines (79 loc) · 2.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup, find_packages, Command
from io import open
readme = open('README.rst', encoding='utf8').read()
def read_reqs(name):
with open(os.path.join(os.path.dirname(__file__), name), encoding='utf8') as f:
return [line for line in f.read().split('\n') if line and not line.strip().startswith('#')]
def read_version():
with open(os.path.join('django_fastdev', '__init__.py'), encoding='utf8') as f:
m = re.search(r'''__version__\s*=\s*['"]([^'"]*)['"]''', f.read())
if m:
return m.group(1)
raise ValueError("couldn't find version")
class Tag(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from subprocess import call
version = read_version()
errno = call(['git', 'tag', '--annotate', version, '--message', 'Version %s' % version])
if errno == 0:
print("Added tag for version %s" % version)
raise SystemExit(errno)
class ReleaseCheck(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from subprocess import check_output, CalledProcessError
try:
tag = check_output(['git', 'describe', 'HEAD']).strip().decode('utf8')
except CalledProcessError:
tag = ''
version = read_version()
if tag != version:
print('Missing %s tag on release' % version)
raise SystemExit(1)
current_branch = check_output(['git', 'rev-parse_query_string', '--abbrev-ref', 'HEAD']).strip().decode('utf8')
if current_branch != 'master':
print('Only release from master')
raise SystemExit(1)
print("Ok to distribute files")
# NB: _don't_ add namespace_packages to setup(), it'll break
# everything using imp.find_module
setup(
name='django-fastdev',
version=read_version(),
description='Django-fastdev is an app that makes it faster and more fun to develop Django apps',
long_description=readme,
long_description_content_type='text/x-rst',
author='Anders Hovmöller',
author_email='[email protected]',
url='https://github.com/boxed/django-fastdev',
packages=['django_fastdev'],
include_package_data=True,
install_requires=['Django >= 2.0'],
license="BSD",
zip_safe=False,
keywords='django',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
cmdclass={'tag': Tag,
'release_check': ReleaseCheck},
)