forked from coala/coala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·136 lines (108 loc) · 4.86 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python3
# Start ignoring PyImportSortBear as imports below may yield syntax errors
from coalib import assert_supported_version, VERSION, get_version, BUS_NAME
assert_supported_version()
# Stop ignoring
import datetime
import locale
import sys
from os import getenv
from subprocess import call
import setuptools.command.build_py
from coalib.misc.BuildManPage import BuildManPage
from coalib.output.dbus.BuildDbusService import BuildDbusService
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
try:
locale.getlocale()
except (ValueError, UnicodeError):
locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
class BuildPyCommand(setuptools.command.build_py.build_py):
def run(self):
self.run_command('build_manpage')
self.run_command('build_dbus')
setuptools.command.build_py.build_py.run(self)
class PyTestCommand(TestCommand):
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main([])
sys.exit(errno)
class BuildDocsCommand(setuptools.command.build_py.build_py):
apidoc_command = ('sphinx-apidoc', '-f', '-o', 'docs/API/',
'coalib')
doc_command = ('make', '-C', 'docs', 'html')
def run(self):
call(self.apidoc_command)
call(self.doc_command)
# Generate API documentation only if we are running on readthedocs.org
on_rtd = getenv('READTHEDOCS', None) != None
if on_rtd:
call(BuildDocsCommand.apidoc_command)
if "dev" in VERSION:
current_version = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
call(['python3', '.misc/adjust_version_number.py', 'coalib/VERSION',
'-b {}'.format(current_version)])
VERSION = get_version()
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
with open('test-requirements.txt') as requirements:
test_required = requirements.read().splitlines()
with open("README.rst") as readme:
long_description = readme.read()
if __name__ == "__main__":
data_files = [('.', ['coala.1']), ('.', [BUS_NAME + '.service'])]
setup(name='coala',
version=VERSION,
description='Code Analysis Application (coala)',
author="The coala developers",
author_email="coala.analyzer@gmail.com",
maintainer="Lasse Schuirmann, Fabian Neuschmidt, Mischa Kr\xfcger"
if not on_rtd else "L.S., F.N., M.K.",
maintainer_email=('lasse.schuirmann@gmail.com, '
'fabian@neuschmidt.de, '
'makman@alice.de'),
url='http://coala-analyzer.org/',
platforms='any',
packages=find_packages(exclude=["build.*", "tests", "tests.*"]),
install_requires=required,
tests_require=test_required,
package_data={'coalib': ['default_coafile', "VERSION",
'bearlib/languages/definitions/*.coalang',
'bearlib/languages/documentation/*.coalang']
},
license="AGPL-3.0",
data_files=data_files,
long_description=long_description,
entry_points={
"console_scripts": [
"coala = coalib.coala:main",
"coala-ci = coalib.coala_ci:main",
"coala-dbus = coalib.coala_dbus:main",
"coala-json = coalib.coala_json:main",
"coala-format = coalib.coala_format:main",
"coala-delete-orig = coalib.coala_delete_orig:main"]},
# from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Gnome',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License '
'v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Text Processing :: Linguistic'],
cmdclass={'build_manpage': BuildManPage,
'build_dbus': BuildDbusService,
'build_py': BuildPyCommand,
'docs': BuildDocsCommand,
'test': PyTestCommand})