-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 723 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 723 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
#-----
# Description : Setup for mvps studio
# Author : Berkan Lafci
# E-mail : lafciberkan@gmail.com
#-----
from setuptools import setup, find_packages
packages = find_packages(exclude=('mvps.tests*', 'mvps.*.tests*'))
setup(
name="mvpsstudio",
version="1.0.0",
description = "Multiview photometric stereo (MVPS) studio hardware and software",
author = "Berkan Lafci",
author_email = "lafciberkan@gmail.com",
url = "https://github.com/berkanlafci/mvpsstudio",
keywords = ["multiview photometric stereo", "3D reconstruction", "scanner"],
classifiers = [],
install_requires = [],
provides = ["mvps"],
packages = packages,
include_package_data=True,
extras_require = {},
entry_points = {},
)