-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (37 loc) · 1.13 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
"""PyPI setup script."""
# Built-in
from setuptools import setup, find_packages
from pathlib import Path
# Metadata
__author__ = "Valentin Beaumont"
__email__ = "valentin.onze@gmail.com"
###### CODE ####################################################################
# Add `README.md` as project long description
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="fxquinox",
version="0.0.1",
long_description=long_description,
long_description_content_type="text/markdown",
description="USD centric pipeline for feature animation and VFX projects.",
url="https://github.com/healkeiser/fxquinox",
author="Valentin Beaumont",
author_email="valentin.onze@gmail.com",
license="MIT",
keywords="VFX USD Qt Houdini Maya Nuke PySide2 DCC UI",
packages=find_packages(),
install_requires=[
"colorama",
"fxgui",
"mss",
"pillow",
"PySide2",
"PySide6",
"PyYAML",
"tabulate",
],
include_package_data=True,
)
# To install as a local editable package:
# python -m pip install -e .