File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 55
66setup_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' ,
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+
2835if __name__ == '__main__' :
29- setup (** setup_args )
36+ setup (** setup_args , install_requires = install_requires )
You can’t perform that action at this time.
0 commit comments