forked from GreenBankObservatory/gbt-rfi-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1017 Bytes
/
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
import pathlib
from distutils.core import setup
from setuptools import find_packages
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Derive requirements from requirements.in, so they aren't duplicated
requirements = (here / "requirements.in").read_text(encoding="utf-8").splitlines()
# this will make a package of only the GUI directory
# as specified by the 'packages' keyword
setup(
name="gbt_rfi_gui",
version="1.1", # 13',
description="GBT RFI GUI",
long_description=long_description,
author="Kathlyn Purcell",
author_email="[email protected]",
url="https://pypi.org/project/gbt-rfi-gui/",
keywords="",
packages=find_packages(),
py_modules=["gbt_rfi_gui"],
install_requires=requirements,
python_requires=">=3.6, <4",
entry_points={
"console_scripts": [
"gbt-rfi-gui=gbt_rfi_gui.gbt_rfi_gui:main",
],
},
)