forked from mjirik/lisa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (34 loc) · 1.13 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
#! /usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
#from cx_Freeze import setup, Executable
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
#setup(
# name = " ",
# version = "0.1",
# description = " ",
# options = {"build_exe": {"packages": ["numpy.lib.format"]}},
# executables = [Executable("./src/cxpokus.py")]
# #executables = [Executable("./src/organ_segmentation.py")]
# )
# #executables = [Executable("./src/organ_segmentation.py")]
setup(
name = "liversurgery",
version = "0.0.4",
author = "Miroslav Jirik",
author_email = "[email protected]",
description = ("Comuter aided liver surgery"
""),
license = "BSD",
keywords = "liver surgery computer vision",
url = "http://github.com/mjirik",
packages=['an_example_pypi_project', 'tests'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"License :: OSI Approved :: BSD License",
],
)