Skip to content

Commit 436071c

Browse files
committed
Pycalc release v1.0.7.
1 parent 8de65a4 commit 436071c

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

final_task/pycalc/operators.pkl

Whitespace-only changes.

final_task/setup.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
from distutils.core import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name='pycalc',
5-
version='1.0.2.',
6-
packages=[''],
7-
url='',
8-
license='Free',
5+
version='1.0.0',
96
author='Gleb Nikitin',
10-
author_email='[email protected]',
11-
description='Python calculator.'
7+
author_email='[email protected]',
8+
packages=find_packages(),
9+
entry_points={'console_scripts': ['pycalc=pycalc.pycalc:main']},
1210
)

0 commit comments

Comments
 (0)