-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
65 lines (58 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup, find_packages
import anima
def read(fname):
"""Utility function to read the README file.
Used for the long_description. It's nice, because now:
1) we have a top level README file and
2) it's easier to type in the README file than to put a raw string in
below ...
:param str fname: the file name
:return:
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="anima",
version=anima.__version__,
authors=["Erkan Ozgur Yilmaz"],
author_emails=["[email protected]"],
description="VFX and Animation pipeline developed in Anima Istanbul",
long_description=read("README"),
keywords=["animation", "character", "studio", "vfx", "pipeline"],
packages=find_packages(exclude=["tests*"]),
platforms=["any"],
url="https://github.com/eoyilmaz/anima",
license="http://www.opensource.org/licenses/bsd-license.php",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development",
"Topic :: Utilities",
],
requires=[
"stalker",
"edl",
"timecode",
"sqlalchemy",
"pillow",
"exifread",
"jinja2",
"pytz",
"ldap3",
"pyside2;sys_platform != 'darwin'",
"pyside6;sys_platform == 'darwin'",
"tzlocal",
"qtawesome",
"qtpy",
"packaging",
],
install_requires=["stalker", "edl", "timecode", "sqlalchemy"],
test_requires=["pytest", "pytest-xdist", "coverage", "pytest-cov"],
)