forked from rbarrois/django_xworkflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
91 lines (77 loc) · 2.92 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2011-2013 Raphaël Barrois
# This code is distributed under the two-clause BSD license.
import codecs
import os
import re
import subprocess
import sys
from setuptools import setup, find_packages
from setuptools.command import build_py
root_dir = os.path.abspath(os.path.dirname(__file__))
def get_version(package_name):
version_re = re.compile(r"^__version__ = [\"']([\w_.+-]+)[\"']$")
package_components = package_name.split('.')
init_path = os.path.join(root_dir, *(package_components + ['__init__.py']))
with codecs.open(init_path, 'r', 'utf-8') as f:
for line in f:
match = version_re.match(line[:-1])
if match:
return match.groups()[0]
return '0.1.0'
def clean_readme(fname):
"""Cleanup README.rst for proper PyPI formatting."""
with codecs.open(fname, 'r', 'utf-8') as f:
return ''.join(
re.sub(r':\w+:`([^`]+?)( <[^<>]+>)?`', r'``\1``', line)
for line in f
if not (line.startswith('.. currentmodule') or line.startswith('.. toctree'))
)
class BuildWithMakefile(build_py.build_py):
"""Custom 'build' command that runs 'make build' first."""
def run(self):
subprocess.check_call(['make', 'build'])
if sys.version_info[0] < 3:
# Under Python 2.x, build_py is an old-style class.
return build_py.build_py.run(self)
return super().run()
PACKAGE = 'django_xworkflows'
setup(
name=PACKAGE,
version=get_version(PACKAGE),
author="Raphaël Barrois",
author_email="raphael.barrois+%s@polytechnique.org" % PACKAGE,
description="A django app enabling Django models to use xworkflows.",
long_description=clean_readme('README.rst'),
license="BSD",
keywords="django workflow state machine automaton",
url="http://github.com/rbarrois/django_xworkflows",
download_url="http://pypi.python.org/pypi/django-xworkflows/",
packages=find_packages(exclude=['dev', 'tests*']),
cmdclass={'build_py': BuildWithMakefile},
include_package_data=True,
setup_requires=[
'setuptools>=0.8',
],
install_requires=[
'Django',
'xworkflows',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
test_suite='tests.runner.runtests',
zip_safe=False, # Prevent distribution as eggs for South.
)