-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.06 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
from setuptools import setup
version_file = open('VERSION')
version = version_file.read().strip()
setup(
name='dijkstrapy',
version=version,
description='A CLI rpn calculator',
long_description='A command-line calculator using reverse polish notation that is fully written in Python',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: Utilities',
'Programming Language :: Python :: 2 :: Only',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
],
keywords='rpn calculator cli',
url='https://github.com/philippgovernale/dijkstrapy',
author='Philipp Governale',
author_email='philipp.governale1@gmail.com',
license='GPLv3+',
py_modules = ['dijkstrapy', 'getchar','handler','mathfuncs', 'screen', 'stackop', 'sysfuncs', 'var', 'win10col', 'readconfig'],
data_files=[('/data', ['VERSION']), ('/data', ['config.ini'])],
entry_points='''
[console_scripts]
dijkstrapy=dijkstrapy
''',
)