-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.66 KB
/
setup.py
File metadata and controls
57 lines (51 loc) · 1.66 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
from setuptools import setup, find_packages
setup(
name='exod',
version='0.1.0',
description='X-ray Outburst Detector',
authors=['Norman Khan', 'Erwan Quintin'],
author_emails=['Norman.Khan@irap.omp.eu', 'Erwan.Quintin@irap.omp.eu'],
url='https://github.com/nx1/EXOD2',
packages=find_packages(), # Automatically discover and include all packages in the project
# Define project dependencies
install_requires=[
'numpy',
'scipy',
'matplotlib',
'astropy',
'requests',
'tqdm',
'scikit-image',
'pandas',
'cmasher',
'statsmodels',
'opencv-python',
'photutils',
'astroquery',
'pytest',
'Flask',
'tables'
],
# Include additional files like data files, package data, etc.
include_package_data=True,
# Entry points allow scripts to be specified as executables
entry_points={
'console_scripts': [
'xod-cli = xod.cli:main', # Example entry point for a command-line script
],
},
# Define classifiers to categorize your project
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)