forked from fredrikaverpil/oiio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 829 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 829 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
27
28
29
30
31
32
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Prefer setuptools over distutils
from setuptools import setup
from setuptools import find_packages
setup(
name="oiio",
version="PACKAGE_VERSION",
description="OpenImageIO Python package",
url="https://github.com/fredrikaverpil/oiio-python",
# https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: PYTHON_VERSION",
"License :: OSI Approved :: MIT License",
"Operating System :: OS_NAME",
],
packages=find_packages(exclude=[]),
package_data={
# If any package (!) contains ... files, include them:
"": [
"*.pyd",
"*.dll",
"*.so",
]
},
)