-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.09 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='cmpx',
version='0.8.4',
description='A package for different operations on complex numbers',
long_description_content_type='text/markdown',
long_description=README,
license='MIT',
packages=find_packages(),
author='Omar Belghaouti',
maintainer='Omar Belghaouti',
author_email='bel_omar18@yahoo.com',
maintainer_email='bel_omar18@yahoo.com',
keywords=['Complex', 'ComplexOperations', 'ComplexNumbers'],
url='https://github.com/Omar-Belghaouti/PythonComplex',
download_url='https://pypi.org/project/cmpx/',
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
python_requires='~=3.3'
)
install_requires = [
'colorama'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)