Skip to content

Commit 1f261ec

Browse files
committed
Changing import+Updating version to 0.7
A way simpler import
1 parent 9ca1f62 commit 1f261ec

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

cmpx/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from . import Complex
1+
from .Complex import Complex
22

33
__title__ = 'PythonComplex'
44
__author__ = 'Omar Belghaouti'
55
__maintainer__ = 'Omar Belghaouti'
66
__email__ = 'bel_omar18@yahoo.com'
7-
__version__ = '0.6'
7+
__version__ = '0.7'
88
__license__ = 'MIT'
99
__all__ = [
1010
'Complex'

setup.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
setup_args = dict(
77
name='cmpx',
8-
version='0.6',
9-
description='Complex class for different operations on complex numbers',
8+
version='0.7',
9+
description='A package for different operations on complex numbers',
1010
long_description_content_type='text/markdown',
1111
long_description=README,
1212
license='MIT',
@@ -19,11 +19,18 @@
1919
url='https://github.com/Omar-Belghaouti/PythonComplex',
2020
download_url='https://pypi.org/project/cmpx/',
2121
classifiers=[
22+
'Operating System :: OS Independent',
23+
'License :: OSI Approved :: MIT License',
2224
'Intended Audience :: End Users/Desktop',
2325
'Intended Audience :: Developers',
24-
'Programming Language :: Python',
25-
]
26+
'Programming Language :: Python :: 3',
27+
],
28+
python_requires='~=3.3'
2629
)
2730

31+
install_requires = [
32+
'colorama'
33+
]
34+
2835
if __name__ == '__main__':
29-
setup(**setup_args)
36+
setup(**setup_args, install_requires=install_requires)

0 commit comments

Comments
 (0)