-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 1.01 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="julia",
version="0.1",
author="Kaito Arai, Rowan Hobson, Harrison Mouat, Jan Panek, Baptiste Simandoux",
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]",
description="A package for drawing Julia sets and external/internal rays associated with cubic maps and the Newton maps associated with them.",
url="https://github.com/Harry-icl/M2R-Julia-Sets",
project_urls={
"Bug Tracker": "https://github.com/Harry-icl/M2R-Julia-Sets/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6",
install_requires=[
'numpy==1.19.3',
'matplotlib',
'numba',
'Pillow',
'opencv-python',
'PySimpleGUI',
],
)