forked from SergeySatskiy/cdm-pythonparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
94 lines (86 loc) · 3.56 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
# -*- coding: utf-8 -*-
#
# cdm-pythonparser - python 2 content parser used in Codimension to provide
# a structured view into python 2 files and character buffers
# Copyright (C) 2010-2017 Sergey Satskiy <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from setuptools import setup, Extension
import os.path
import sys
description = 'Fast and comprehensive Python language parser. ' \
'Written as a part of the Codimension project, this parser ' \
'aims at pulling the most data from Python sources while ' \
'exceeding the speed of existing parsers.'
try:
version = os.environ['CDM_PROJECT_BUILD_VERSION']
except KeyError:
version = 'trunk'
if os.path.exists('cdmpyparserversion.py'):
try:
import cdmpyparserversion
version = cdmpyparserversion.version
except:
pass
try:
import pypandoc
converted = pypandoc.convert('README.md', 'rst').splitlines()
no_travis = [line for line in converted if 'travis-ci.org' not in line]
long_description = '\n'.join(no_travis)
# Pypi index does not like this link
long_description = long_description.replace('|Build Status|', '')
except:
print('pypandoc package is not installed: the markdown '
'README.md convertion to rst failed', file=sys.stderr)
import io
# pandoc is not installed, fallback to using raw contents
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
if sys.platform=='win32':
extra_compile_args=['/Oy',
'/DCDM_PY_PARSER_VERSION=\\"' + version + '\\"',
'/Ox',
]
else:
extra_compile_args=['-Wno-unused', '-fomit-frame-pointer',
'-DCDM_PY_PARSER_VERSION="' + version + '"',
'-ffast-math',
'-O2',
'-std=c99']
# install_requires=['pypandoc'] could be added but really it needs to only
# at the time of submitting a package to Pypi so it is excluded from the
# dependencies
setup(name='cdmpyparser',
description=description,
python_requires='>=3.5',
long_description=long_description,
version=version,
author='Sergey Satskiy',
author_email='[email protected]',
url='https://github.com/SergeySatskiy/cdm-pythonparser',
license='GPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
platforms=['any'],
py_modules=['cdmpyparser'],
ext_modules=[Extension('_cdmpyparser',
['src/cdmpyparser.c'],
extra_compile_args=extra_compile_args)])