-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (20 loc) · 699 Bytes
/
setup.py
File metadata and controls
27 lines (20 loc) · 699 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
# -*- coding: utf-8 -*-
# Setup file for the femtolab frogDAQ
# Setup template from: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='frogDAQ',
version='0.4.2',
description='Femtolab FROG code, current version for Ocean Optics Spectrometers + Newport ESP stages',
long_description=readme,
# long_description_content_type="text/rst",
author='Paul Hockett',
author_email='paul@femtolab.ca',
url='https://github.com/phockett/frogDAQ',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)