forked from tyrylu/pyfmodex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
17 lines (15 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
clfs = []
clfs.append("Development Status :: 5 - Production/Stable")
clfs.append("Intended Audience :: Developers")
clfs.append("License :: OSI Approved :: MIT License")
clfs.append("Operating System :: Microsoft :: Windows :: Windows XP")
clfs.append("Operating System :: Microsoft :: Windows :: Windows Vista")
clfs.append("Operating System :: Microsoft :: Windows :: Windows 7")
clfs.append("Operating System :: Microsoft :: Windows :: Windows 8")
clfs.append("Operating System :: Microsoft :: Windows :: Windows 8.1")
clfs.append("Operating System :: Microsoft :: Windows :: Windows 10")
clfs.append("Operating System :: MacOS :: MacOS X")
clfs.append("Operating System :: POSIX :: Linux")
clfs.append("Programming Language :: Python :: 3")
setup(name="pyfmodex", version="0.7.0", author="Lukas Tyrychtr", author_email="[email protected]", url="https://www.github.com/tyrylu/pyfmodex", packages=["pyfmodex", "pyfmodex.studio"], long_description=open("readme.md", "r").read(), long_description_content_type="text/markdown", description="Python bindings to the Fmod Ex library.", license="MIT", classifiers=clfs)