File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from . import Complex
22
3+ __title__ = 'PythonComplex'
4+ __author__ = 'Omar Belghaouti'
5+ __maintainer__ = 'Omar Belghaouti'
6+ __email__ = 'bel_omar18@yahoo.com'
7+ __version__ = '0.5'
8+ __license__ = 'MIT'
39__all__ = [
410 'Complex'
511]
Original file line number Diff line number Diff line change 55
66setup_args = dict (
77 name = 'cmpx' ,
8- version = '0.3 ' ,
8+ version = '0.4 ' ,
99 description = 'Complex class for different operations on complex numbers' ,
1010 long_description_content_type = 'text/markdown' ,
1111 long_description = README ,
1212 license = 'MIT' ,
1313 packages = find_packages (),
1414 author = 'Omar Belghaouti' ,
15+ maintainer = 'Omar Belghaouti' ,
1516 author_email = 'bel_omar18@yahoo.com' ,
17+ maintainer_email = 'bel_omar18@yahoo.com' ,
1618 keywords = ['Complex' , 'ComplexOperations' , 'ComplexNumbers' ],
1719 url = 'https://github.com/Omar-Belghaouti/PythonComplex' ,
18- download_url = 'https://pypi.org/project/cmpx/'
20+ download_url = 'https://pypi.org/project/cmpx/' ,
21+ classifiers = [
22+ 'Intended Audience :: End Users/Desktop' ,
23+ 'Intended Audience :: Developers' ,
24+ 'Programming Language :: Python' ,
25+ ]
1926)
2027
2128if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments