Skip to content

Commit 1ebaa14

Browse files
distribution archives implementation 1
1 parent 650aa02 commit 1ebaa14

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed
13 KB
Binary file not shown.

final_task/pycalc-1.0.0.tar.gz

8.69 KB
Binary file not shown.

final_task/setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name = 'pycalc',
5+
version = '1.0.0',
6+
author = 'Anton Charnichenka',
7+
author_email = '[email protected]',
8+
description = 'pure Python command line calculator',
9+
packages = ['pycalc'],
10+
entry_points = {'console_scripts': ['pycalc = pycalc.pycalc']},
11+
classifiers=["Programming Language :: Python :: 3.6", "Operating System :: Linux Mint"])

0 commit comments

Comments
 (0)