-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 977 Bytes
/
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='punchpipe',
version='0.0.1',
# package_dir={"": "punchpipe"},
packages=find_packages(),
python_requires=">=3.7, <4",
url='',
license='',
author='PUNCH SOC',
author_email='[email protected]',
description='PUNCH mission\'s data reduction pipeline',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'prefect',
'pymysql',
'pydantic==2.6.0',
'sqlalchemy',
'punchbowl',
'datapane',
'plotly',
'pyyaml'],
extras_require={
'dev': [],
'test': ['pytest', 'coverage', 'pytest-mock-resources[mysql]', 'freezegun'],
'docs': ['sphinx', 'sphinx-rtd-theme', 'sphinx-automodapi']
},
)