-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 825 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 825 Bytes
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
from setuptools import setup, find_packages
setup(
name="prepostcov",
version="0.1.0",
description="Covariance and multipole tools for power spectrum and correlation function analysis.",
author="A. Baleato Lizancos & M. Maus",
author_email="a.baleatolizancos@berkeley.edu",
url="https://github.com/abaleato/PrePostCov/tree/main",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
# Add other dependencies as needed
],
entry_points={
"console_scripts": [
"prepostcov=prepostcov.__main__:main"
]
},
python_requires=">=3.7",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)