forked from jsalort/sifreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 705 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Zhenpeng Zhou <zhenp3ngzhou cir{a} gmail dot com>
# Fri Nov 17 2017
import os
from setuptools import setup
setup(
name = 'sifreader',
packages = ['sifreader'],
version = '0.2.4',
install_requires = ['numpy'],
description = 'A library to read Andor SIF file',
long_description = open('readme.md').read(),
long_description_content_type="text/markdown",
author = 'Zhenpeng Zhou and Daniel R. Stephan',
author_email = 'zhenp3ngzhou@gmail.com',
url = 'https://github.com/lightingghost/sifreader',
download_url = 'https://github.com/lightingghost/sifreader/archive/0.2.3.tar.gz',
keywords = ['SIF', 'Andor', 'Image', 'reader'],
classifiers = ['Development Status :: 3 - Alpha'],
)