-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.16 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.16 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
#! /usr/bin/env python
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
import setuptools
with open("src/README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="matplotlib_user_interface",
version="2022.02.10",
author="Kevin Volk",
author_email="kvolk@stsci.edu",
description="A Matplotlib GUI program reminiscent of xmgrace.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KevinVolkSTScI/matplotlib-gui-code",
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=[
'astropy>=4.2',
'matplotlib>=3.4.2',
'numpy>=1.20.3',
'scipy>=1.6.0',
'photutils>=1.1.0'
],
)