This repository has been archived by the owner on Dec 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (46 loc) · 2.2 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
# -*- coding: utf-8 -*-
# ***************************************************************************
# * *
# * Copyright (c) 2020 Frank Martinez <mnesarco at gmail.com> *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * This program 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 this program. If not, see <https://www.gnu.org/licenses/>. *
# * *
# ***************************************************************************
from setuptools import setup
__version__ = "0.0.1"
setup(
name='freecad.extman',
version=__version__,
packages=[
'freecad',
'freecad.extman',
'freecad.extman.protocol',
'freecad.extman.template',
'freecad.extman.utils',
'freecad.extman.gui',
'freecad.extman.sources',
],
maintainer="mnesarco",
maintainer_email="[email protected]",
url="https://github.com/mnesarco/FreeCAD_ExtMan",
description="Extension Manager for FreeCAD",
install_requires=[
"python3-pyside2.qtwebchannel",
"python3-pyside2.qtnetwork",
"python3-pyside2.qtwebenginecore",
"python3-pyside2.qtwebenginewidgets",
],
include_package_data=True
)