-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
52 lines (48 loc) · 1.48 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
import setuptools
# read the description file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'doc/pycinema-description.md'), encoding='utf-8') as f:
long_description = f.read()
exec(open("pycinema/_version.py").read())
print(__version__)
setuptools.setup(
name="pycinema",
version=__version__,
author="David H. Rogers",
author_email="[email protected]",
description="Cinema scientific toolset.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/cinemascience/pycinema",
include_package_data=True,
zip_safe=False,
packages=[ "pycinema", "pycinema.filters", "pycinema.scripts", "pycinema.theater", "pycinema.theater.node_editor", "pycinema.theater.views", "pycinema.ipy" ],
install_requires=[
"numpy<2.0.0",
"scipy==1.13.1",
"h5py",
"matplotlib",
"py",
"Pillow",
"moderngl",
"opencv-python-headless",
"ipycanvas",
"ipywidgets",
"PySide6",
"igraph",
"requests",
"pyqtgraph",
"tensorflow",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
scripts=[
'doc/pycinema-description.md',
'scripts/cinema'
],
data_files=[('fonts',['fonts/NotoSansMono-VariableFont_wdth,wght.ttf'])]
)