kartikmandar commited on
Commit
13a1ba6
·
1 Parent(s): c11ecea

add basic setup and .toml file for readthedocs

Browse files
Files changed (2) hide show
  1. pyproject.toml +16 -0
  2. setup.py +14 -0
pyproject.toml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "StingrayExplorer"
7
+ version = "0.1"
8
+ description = "A package for analyzing astronomical data."
9
+ authors = [{name = "Kartik Mandar", email = "your.email@example.com"}]
10
+ dependencies = [
11
+ "sphinx",
12
+ "sphinx-rtd-theme",
13
+ "sphinx-autodoc-typehints",
14
+ "stingray",
15
+ # Add other dependencies here if needed
16
+ ]
setup.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='StingrayExplorer',
5
+ version='0.1',
6
+ packages=find_packages(include=['modules', 'modules.*']),
7
+ install_requires=[
8
+ 'sphinx',
9
+ 'sphinx-rtd-theme',
10
+ 'sphinx-autodoc-typehints',
11
+ 'stingray',
12
+ # Add other dependencies here if needed
13
+ ],
14
+ )