-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (42 loc) · 1.4 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
"""This setup script packages pyblish-3dsmax."""
# Import built-in modules
import importlib
import os
# Import third-party modules
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
version_file = os.path.abspath("pyblish_3dsmax/version.py")
version_mod = importlib.import_module("pyblish_3dsmax.version")
version = version_mod.version
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="pyblish-3dsmax",
version=version,
packages=find_packages(),
url="https://github.com/pyblish/pyblish-3dsmax",
license="LGPL",
author="Pyblish contributors",
author_email="me@mottosso.com",
description="Pyblish for 3ds Max.",
long_description=long_description,
long_description_content_type="text/markdown",
zip_safe=False,
classifiers=classifiers,
install_requires=[
"qt.py>=1.3",
"pyblish_base>=1.2.1",
"pyblish_lite>=0.8.0",
]
)