forked from cyanazuki/CryoParticleSegment
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 677 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (16 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(
name='CryoParticleSeg',
version='0.1.0',
description="CRISP: A Modular Platform for Cryo-EM Image Segmentation and Processing with Conditional Random Field",
author="Szu-Chi Chung and Po-Cheng Chou",
author_email="steve2003121@gmail.com",
url="https://github.com/phonchi/CryoParticleSegment",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)