forked from pyqtgraph/pyqtgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (60 loc) · 2.19 KB
/
setup.py
File metadata and controls
63 lines (60 loc) · 2.19 KB
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 os
import sys
from pathlib import Path
from setuptools import find_namespace_packages, setup
root_path = Path(__file__).parent
sys.path.append(os.fsdecode(root_path))
import tools.setupHelpers as helpers
version = helpers.getInitVersion(root_path / "pyqtgraph")
long_description = (root_path / "README.md").read_text()
setup(
name='pyqtgraph',
description='Scientific Graphics and GUI Library for Python',
long_description=long_description,
long_description_content_type="text/markdown",
license = 'MIT',
url='http://www.pyqtgraph.org',
project_urls={
'Changelog': 'https://github.com/pyqtgraph/pyqtgraph/blob/master/CHANGELOG',
'Documentation': 'https://pyqtgraph.readthedocs.io',
'Homepage': 'https://pyqtgraph.org',
'Mastodon': 'https://fosstodon.org/@pyqtgraph',
'Source': 'https://github.com/pyqtgraph/pyqtgraph',
},
author='Luke Campagnola',
author_email='luke.campagnola@gmail.com',
classifiers = [
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces"
],
version=version,
cmdclass={
'asv_config': helpers.ASVConfigCommand,
},
packages=find_namespace_packages(include=['pyqtgraph', 'pyqtgraph.*']),
python_requires=">=3.12",
package_dir={"pyqtgraph": "pyqtgraph"},
package_data={
'pyqtgraph.examples': ['optics/*.gz', 'relativity/presets/*.cfg'],
"pyqtgraph.icons": ["**/*.svg", "**/*.png"],
"pyqtgraph": [
"colors/maps/*.csv",
"colors/maps/*.txt",
"colors/maps/*.hex",
],
},
install_requires = [
'numpy>=2.0.0',
'colorama'
],
)