-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (20 loc) · 703 Bytes
/
setup.py
File metadata and controls
29 lines (20 loc) · 703 Bytes
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
'''
Created on March 1, 2022
@Author: RLPfeiffer
'''
from ez_setup import use_setuptools
from setuptools import setup, find_packages
if __name__=='main':
use_setuptools()
packages = find_packages()
install_requires= ["pymeshlab"]
classifiers = ['Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering']
setup(name = 'vikingmesh_addons',
version = '1.0',
description= "MeshLab filters for dae files",
author =' Rebecca Pfeiffer',
author_email= "[email protected]",
url = 'https://github.com/RLPfeiffer/VikingMesh_addons',
install_requires=install_requires,
packages=packages)