Skip to content

Commit

Permalink
[MINOR-12-1]
Browse files Browse the repository at this point in the history
1. minor improvements for v0.1.3
  • Loading branch information
syedalimohsinbukhari committed Sep 14, 2024
1 parent e8199cd commit 4fb8e46
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Syed Ali Mohsin Bukhari, Astrophysics and Python
Copyright (c) 2022 Syed Ali Mohsin Bukhari

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build-system]
requires = ["setuptools~=68.0.0"]
requires = ["setuptools"]

build-backend = "setuptools.build_meta:__legacy__"
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = umatrix
version = 0.1.3
url = https://github.com/syedalimohsinbukhari/Matrices
author = Syed Ali Mohsin Bukhari, Astrophysics and Python
author_email = [email protected], [email protected]
author = Syed Ali Mohsin Bukhari
author_email = [email protected]
license = MIT
license_files = LICENSE
description = ''
Expand All @@ -12,19 +12,19 @@ long_description_content_type = "text/markdown"

[options]
package_dir =
= src
= src

packages = find:
python_requires = ">= 3.9"

install_requires =
setuptools
setuptools

[options.packages.find]
where = src

classifiers =
License :: OSI Approved :: CC License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: CC License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
38 changes: 19 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
readme = f.read()

setup(
name='umatrix',
version='0.1.3',
packages=find_packages(where="src"),
url='https://github.com/syedalimohsinbukhari/Matrices',
license='MIT',
author='Syed Ali Mohsin Bukhari, Astrophysics and Python',
author_email='syedali.b@outlook.com, astrophysicsandpython@gmail.com',
description='',
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=["setuptools"],
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"],
)
name='umatrix',
version='0.1.3',
packages=find_packages(where="src"),
url='https://github.com/syedalimohsinbukhari/Matrices',
license='MIT',
author='Syed Ali Mohsin Bukhari',
author_email='[email protected]',
description='',
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=["setuptools"],
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"],
)

0 comments on commit 4fb8e46

Please sign in to comment.