forked from python-microscope/microscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (46 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
## Copyright (C) 2016 David Pinto <[email protected]>
##
## Copying and distribution of this file, with or without modification,
## are permitted in any medium without royalty provided the copyright
## notice and this notice are preserved. This file is offered as-is,
## without any warranty.
import setuptools
setuptools.setup(
name = "microscope",
version = "0.1.0+dev",
description = "An extensible microscope hardware interface.",
license = "GPL-3.0+",
## Do not use author_email because that won't play nice once there
## are multiple authors.
author = "Mick Phillips <[email protected]>",
url = "https://github.com/MicronOxford/microscope",
packages = [
"microscope",
"microscope.cameras",
"microscope.lasers",
"microscope.testsuite",
],
install_requires = [
"numpy",
"Pyro4",
"pyserial",
## We use six instead of anything else because we are already
## indirectly dependent on it due to serpent which is a Pyro4
## dependency.
"six",
],
entry_points = {
'console_scripts' : [
'deviceserver = microscope.deviceserver:__main__',
]
},
## https://pypi.python.org/pypi?:action=list_classifiers
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
test_suite="microscope.testsuite",
)