Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'power_sequencer/scripts/BPSProxy/setup.py')
-rw-r--r--power_sequencer/scripts/BPSProxy/setup.py55
1 files changed, 55 insertions, 0 deletions
diff --git a/power_sequencer/scripts/BPSProxy/setup.py b/power_sequencer/scripts/BPSProxy/setup.py
new file mode 100644
index 00000000..22aacf60
--- /dev/null
+++ b/power_sequencer/scripts/BPSProxy/setup.py
@@ -0,0 +1,55 @@
+#
+# Copyright (C) 2016-2019 by Razvan Radulescu, Nathan Lovato, and contributors
+#
+# This file is part of Power Sequencer.
+#
+# Power Sequencer is free software: you can redistribute it and/or modify it under the terms of the
+# GNU General Public License as published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# Power Sequencer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with Power Sequencer. If
+# not, see <https://www.gnu.org/licenses/>.
+#
+from setuptools import setup
+
+
+def readme():
+ with open("README.rst") as f:
+ return f.read()
+
+
+setup(
+ name="bpsproxy",
+ version="0.1.3.post1",
+ description="Blender Power Sequencer proxy generator tool",
+ long_description=readme(),
+ classifiers=[
+ "Development Status :: 4 - Beta",
+ "Environment :: Console",
+ "Intended Audience :: End Users/Desktop",
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
+ "Natural Language :: English",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3.5",
+ "Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3",
+ "Topic :: Multimedia :: Video",
+ "Topic :: Utilities",
+ ],
+ url="https://gitlab.com/razcore/bpsproxy",
+ keywords="blender proxy vse sequence editor productivity",
+ author="Răzvan C. Rădulescu",
+ author_email="razcore.art@gmail.com",
+ license="GPLv3",
+ packages=["bpsproxy"],
+ install_requires=["tqdm"],
+ zip_safe=False,
+ entry_points={"console_scripts": ["bpsproxy=bpsproxy.__main__:main"]},
+ include_package_data=True,
+)