forked from gojuno/make-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (46 loc) · 1.43 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
import os
import sys
import re
from setuptools import setup
MIN_PYTHON = (2, 7)
if sys.version_info < MIN_PYTHON:
sys.stderr.write("Python {}.{} or later is required\n".format(*MIN_PYTHON))
sys.exit(1)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
RE_VERSION = re.compile(r".*__version__ = '(.*?)'", re.S)
try:
VERSION = RE_VERSION.match(
read(os.path.join('make_profiler', '__init__.py'))).group(1)
except Exception:
raise RuntimeError('Unable to determine version.')
setup(
name='make-profiler',
version=VERSION,
author='Darafei Praliaskouski',
author_email='[email protected]',
maintainer='Alexander Verbitsky',
maintainer_email='[email protected]',
description='Profiler for Makefiles',
long_description=read('README.md'),
keywords=['profiler', 'make', 'gnu-make'],
url='https://github.com/gojuno/make-profiler',
packages=['make_profiler'],
test_suite='test',
install_requires=(
'more-itertools==2.4.1',
),
entry_points={
'console_scripts': [
'profile_make_clean = make_profiler.cmd_clean:main',
'profile_make = make_profiler.__main__:main'
]
},
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
],
)