-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.13 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
from codecs import open
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("LICENSE", "r", encoding="utf-8") as f:
license = f.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
install_requires = f.read()
setup(
author="remokasu",
name="pystacker",
version="1.8.1",
license=license,
url="https://github.com/remokasu/stacker",
install_requires=install_requires,
packages=find_packages(),
package_data={
"stacker": [
"data/*",
"plugins/*",
"include/*",
"exec_modes/*",
"util/*",
"syntax/*",
"slib/*",
"lib/*",
]
},
description="Stacker: RPN Calculator in Python",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="reverse-polish-calculator rpn terminal-app",
entry_points={
"console_scripts": [
"stacker = stacker.__main__:main",
],
},
)