forked from naojsoft/g2remote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.05 KB
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
#! /usr/bin/env python
#
import os
from g2remote.version import version
srcdir = os.path.dirname(__file__)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "g2remote",
version = version,
author = "Software Division, Subaru Telescope, NAOJ",
author_email = "ocs@naoj.org",
description = ("Programs for conducting extended remote "
"observation with Subaru Telescope."),
license = "BSD",
keywords = "subaru, telescope, remote, observation, tools",
url = "http://naojsoft.github.com/g2remote",
packages = ['g2remote'],
python_requires = '>=3.5',
install_requires = ['pyotp>=2.3.0', 'paramiko>=2.7.1', 'pyyaml>=5.3.1'],
scripts = ["scripts/g2connect", "scripts/g2connect.bat"],
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering :: Astronomy",
],
)