-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1.12 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
REPO_ROOT = os.path.dirname(os.path.abspath(__file__))
README_PATH = os.path.join(REPO_ROOT, "README.md")
VERSION_PATH = os.path.join(REPO_ROOT, "ayon_api", "version.py")
_version_content = {}
exec(open(VERSION_PATH).read(), _version_content)
setup(
name="ayon-python-api",
version=_version_content["__version__"],
py_modules=["ayon_api"],
packages=["ayon_api"],
author="ynput.io",
author_email="info@ynput.io",
license="Apache License (2.0)",
description="AYON Python API",
long_description=open(README_PATH, encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/ynput/ayon-python-api",
include_package_data=True,
# https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
install_requires=[
"requests >= 2.27.1",
"Unidecode >= 1.3.0",
"appdirs >=1, <2",
],
keywords=["AYON", "ynput", "OpenPype", "vfx"],
)