-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 756 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 756 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="chplot",
version="1.0.1-1",
author="Paul 'charon25' Kern",
description="Plot abritrary math expressions, and compute zeros, derivatives, integrals, regression and more!",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires=">=3.9",
url="https://www.github.com/charon25/Chplot",
license="MIT",
packages=setuptools.find_packages(),
download_url="https://github.com/charon25/Chplot/archive/refs/tags/v1.0.0.tar.gz",
install_requires=[
'matplotlib>=3.6.1',
'mpmath>=1.2.1',
'numpy>=1.23.4',
'scipy>=1.9.3',
'shunting_yard>=1.0.11',
'tqdm>=4.64.1',
]
)