23 lines
683 B
Python
23 lines
683 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='LinearAlgebra',
|
|
version='0.3.0',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
# List your library dependencies here
|
|
],
|
|
author='Your Name',
|
|
author_email='your.email@example.com',
|
|
description='A brief description of your library',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/yourusername/your_library',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MPL2.0 License',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|