Skip to content

Commit

Permalink
add basic setup and .toml file for readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikmandar committed Nov 8, 2024
1 parent 401231c commit cfc8296
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "StingrayExplorer"
version = "0.1"
description = "A package for analyzing astronomical data."
authors = [{name = "Kartik Mandar", email = "[email protected]"}]
dependencies = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"stingray",
# Add other dependencies here if needed
]
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages

setup(
name='StingrayExplorer',
version='0.1',
packages=find_packages(include=['modules', 'modules.*']),
install_requires=[
'sphinx',
'sphinx-rtd-theme',
'sphinx-autodoc-typehints',
'stingray',
# Add other dependencies here if needed
],
)

0 comments on commit cfc8296

Please sign in to comment.