-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
100 lines (64 loc) · 2.59 KB
/
setup.py
File metadata and controls
100 lines (64 loc) · 2.59 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# setup.py for the hfdfocus
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='hfdfocus', # Required
use_scm_version=True,
#version="0.1.0",
#version=AlpacaDSCDriver_Version, # Required
description='Python support for autofocusing a telescope.', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/PythonAstroimagingSuite/hfdfocus', # Optional
author='Michael Fulbright', # Optional
author_email='mike.fulbright@pobox.com', # Optional
license='GPLv3',
classifiers=[ # Optional
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords='', # Optional
package_dir={}, # Optional
packages=find_packages(include=['hfdfocus']), # Required
python_requires='>=3.7, <3.8',
install_requires=[
'matplotlib>=3.0.0'
'astropy>=3.1.0',
'numpy>=1.11.0',
'scipy>=1.2.0',
'pyastroprofile>=0.10',
'pyastrobackend>=0.10'
#'PyQt5>=5.0.0'
], # Optional
extras_require={}, # Optional
setup_requires=[],
tests_require=[],
package_data={}, #{'': 'docs/build/html/*'},# Optional
include_package_data = True,
data_files=[], # Optional
entry_points={},
scripts=[
'scripts/autofocus_auto_star.py',
'scripts/autofocus_hfd_script.py',
'scripts/average_vcurve_runs.py',
'scripts/capture_vcurve_script.py',
'scripts/find_nearby_stars.py',
'scripts/capture_vcurve_script.py'
],
project_urls={ # Optional
# 'Bug Reports': 'https://github.com/pypa/sampleproject/issues',
# 'Funding': 'https://donate.pypi.org',
# 'Say Thanks!': 'http://saythanks.io/to/example',
# 'Source': 'https://github.com/pypa/sampleproject/',
},
)