-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 loc) · 1.02 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
import setuptools
def readme():
with open("README.md") as f:
return f.read()
setuptools.setup(
name="frbgui",
version="0.10.0",
author="Mohammed Chamma",
author_email="[email protected]",
description="GUI and utilities for processing Fast Radio Burst waterfalls",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/mef51/frbgui",
#packages=setuptools.find_packages(),
py_modules=['frbgui', 'driftrate', 'driftlaw'],
install_requires=[
'matplotlib>=3.7.2',
'numpy>=1.24.4',
'dearpygui>=1.9.1',
'dearpygui_ext>=0.9.5',
'your>=0.6.7',
'pandas>=2.1.0',
'tqdm>=4.65.0'
],
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy"
],
python_requires='>=3.6',
scripts=['bin/frbgui'],
entry_points={
'console_scripts': ['frbgui=frbgui:main']
}
)