-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 802 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'py-oiio',
version = '0.0.1',
license = 'MIT',
description = 'OpenImageIO (OIIO) for Python',
long_description_content_type="text/markdown",
author = 'Noah Rahm',
author_email = 'correctsyntax@yahoo.com',
url = 'https://github.com/Correct-Syntax/py-oiio',
keywords = ['openimageio', 'oiio'],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(exclude=[]),
package_data={
# If any package (!) contains ... files, include them:
"": [
"*.pyd",
"*.dll",
"*.so",
]
},
)