-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
37 lines (32 loc) · 942 Bytes
/
setup.cfg
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
[metadata]
name = artella-plugins-core
description = Core Artella plugin package to create DCC plugins for Artella.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Artella, Inc
author_email = support@artella.com
url = https://github.com/artella/artella-plugins-core
[options]
zip_safe = False
include_package_data = true
packages=find:
install_requires =
Qt.py
PySide;python_version <= '3.4' and sys_platform == 'win32'
PySide2;python_version > '3.4' and sys_platform == 'win32'
PySide;python_version < '2.7' and sys_platform == 'darwin'
PySide2;python_version >= '2.7' and sys_platform == 'darwin'
[options.extras_require]
dev =
wheel
test =
pytest
[bdist_wheel]
universal=1
[versioneer]
VCS = git
style = pep440
versionfile_source = artella/_version.py
versionfile_build = artella/_version.py
tag_prefix = releases/
parentdir_prefix = artella-plugins-core-releases-