forked from coala/coala-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (52 loc) · 2.42 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
#!/usr/bin/env python3
import locale
from setuptools import find_packages, setup
try:
locale.getlocale()
except (ValueError, UnicodeError):
locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
with open('test-requirements.txt') as requirements:
test_required = requirements.read().splitlines()
if __name__ == "__main__":
setup(name='coala-quickstart',
version='0.3.0',
description='Quickstart for coala (Code Analysis Application)',
author="The coala developers",
maintainer="Adrian Zatreanu, Alexandros Dimos,"
"Adhityaa Chandrasekar",
maintainer_email=('[email protected], '
url='http://coala.rtfd.org/',
platforms='any',
packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
install_requires=required,
tests_require=test_required,
license="AGPL-3.0",
long_description="coala-quickstart is a tool to help you "
"set up coala easier "
"coala - the COde AnaLysis Application.",
entry_points={
"console_scripts": [
"coala-quickstart = coala_quickstart.coala_quickstart:main"
]},
# from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'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'])