-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 850 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
import setuptools
with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="pyvtflib",
version="0.3.0",
author="Lassi Säike",
description="Python bindings for VTFLib",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lasa01/pyvtflib",
packages=["pyvtflib"],
package_data={
"pyvtflib": ["bin/x64/VTFLib.dll", "bin/x86/VTFLib.dll", "bin/libVTFLib13.so"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
],
keywords="vtflib vtf valve",
)