-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.42 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="LyaPlotter", # Replace with your own username
version="0.0.1",
author="César Ramírez",
author_email="[email protected]",
description="Lyman Alpha mock pipeline sims tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cramirezpe/LyaPlotter/",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'LyaPlotter_get_pixel_neighbours = LyaPlotter.scripts.get_pixel_neighbours:main',
'LyaPlotter_master_to_qso_cat = LyaPlotter.scripts.tools_scripts:master_to_qso_cat_script',
'LyaPlotter_test_debug = LyaPlotter.tools:test_debug_mode',
'LyaPlotter_colore_to_drq = LyaPlotter.scripts.tools_scripts:colore_to_drq_script',
'LyaPlotter_trim_catalog_into_pixels = LyaPlotter.scripts.tools_scripts:trim_catalog_into_pixels_script',
'LyaPlotter_randoms_from_drq = LyaPlotter.scripts.tools_scripts:generate_randoms_from_drq',
'LyaPlotter_randoms_from_dndz = LyaPlotter.scripts.tools_scripts:generate_randoms_from_dndz',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)