Skip to content

Commit ca5b450

Browse files
committed
Update __init__.py and setup.py
Added more metadata
1 parent aef5451 commit ca5b450

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

cmpx/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
from . 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
]

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,24 @@
55

66
setup_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

2128
if __name__ == '__main__':

0 commit comments

Comments
 (0)