-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
63 lines (60 loc) · 1.55 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import pathlib
from setuptools import setup
from setuptools import find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="gpilab",
version="1.4.8",
description="Graphical Programming Interface",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/gpilab/framework",
author="AbdulRahman Alfayad",
author_email="[email protected]",
license="GNU",
packages=find_packages(),
install_requires=[
"cycler==0.11.0",
"dill==0.3.4",
"fonttools==4.28.5",
"grpcio==1.43.0",
"grpcio-tools==1.43.0",
"h5py",
"kiwisolver==1.3.2",
"matplotlib==3.5.1",
"multiprocess==0.70.12.2",
"numpy==1.21.5",
"packaging>=22.0",
"pathos==0.2.8",
"Pillow==9.0.1",
"pox==0.3.0",
"ppft==1.6.6.4",
"protobuf==3.19.1",
"psutil==5.8.0",
"PyOpenGL==3.1.5",
"pyparsing==3.0.6",
"PyQt5",
"PyQt5-Qt5",
"PyQt5-sip",
"pyqtgraph==0.12.3",
"python-dateutil==2.8.2",
"qimage2ndarray==1.8.3",
"QtPy==2.0.0",
"scipy==1.7.3",
"six==1.16.0",
"gpi_core",
],
include_package_data=True,
python_requires=">=3.7",
scripts=[
"bin/gpi",
"bin/gpi_make",
"bin/gpi_update",
"bin/gpi_init",
"bin/gpi.cmd",
"bin/gpi_make.cmd",
],
)