-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.12 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 1.12 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='mathmatrix',
packages=['mathmatrix'],
version='0.3',
license='MIT',
description='A package for Python that lets you create and perform various operations on Matrices sucjh as finding the adjoint, inverse, determinant of a matrix, etc..',
author='Keerthi Vasan S A',
author_email='sakeerthi23@gmail.com',
url='https://github.com/Nectres/mathmatrix.git',
download_url='https://github.com/Nectres/mathmatrix/archive/refs/tags/Alpha.tar.gz',
keywords=['matrix', 'math', 'mathmatrix', 'matrices', 'matrix inverse',
'determinant'],
install_requires=[
'itertools',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
long_description=long_description,
long_description_content_type='text/markdown'
)