-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
55 lines (48 loc) · 1.66 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
#!/usr/bin/env python
from setuptools import setup
# Modified from http://stackoverflow.com/questions/2058802/
# how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package and
# https://stackoverflow.com/questions/6786555/
# automatic-version-number-both-in-setup-py-setuptools-and-source-code#7502821
def version():
import os
import re
init = os.path.join(
os.path.abspath(os.path.dirname(__file__)), 'rpnpy', '__init__.py')
with open(init) as fp:
initData = fp.read()
match = re.search(r"^__version__ = ['\"]([^'\"]+)['\"]",
initData, re.M)
if match:
return match.group(1)
else:
raise RuntimeError('Unable to find version string in %r.' % init)
setup(name='rpnpy',
version=version(),
packages=['rpnpy'],
include_package_data=False,
url='https://github.com/terrycojones/rpnpy',
download_url='https://github.com/terrycojones/rpnpy',
author='Terry Jones',
author_email='terry@jon.es',
keywords=['python reverse polish calculator'],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='MIT',
scripts=['rpn.py'],
description=('Control an RPN calculator from Python.'),
install_requires=[
'engineering_notation'
],
extras_require={
'dev': [
'flake8',
'pytest',
]
})