-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 826 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
setup(
name="FlareXpypline", # project name
version="0.1.0", # starting version, update as needed
author="Jake Mitchell", # replace with your name
author_email="jmitchell@aip.de", # replace with your email
description="A pipeline for X-ray spectral fitting of solar flares", # short description
long_description_content_type="text/markdown",
url="https://github.com/jajmitchell/FlareXpypline", # project URL
packages=find_packages(exclude=["tests", "docs"]), # find your packages
include_package_data=True,
extras_require={
"dev": [
"pytest",
"black",
"flake8",
]
},
python_requires=">=3.8"
)