-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 761 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 761 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
from setuptools import setup, find_packages
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
with open("README.md", "r") as f:
readme = f.read()+"\n\n"
setup(
name="spectra",
version="0.1.2",
include_package_data=True,
python_requires='>=3.10',
packages=find_packages(),
install_requires=requirements,
author="Felix Teutloff",
author_email="astro.felix@teutloff.org",
description="A tiny spectra visualisation and analysis tool.",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD-3-Clause",
"Operating System :: OS Independent",
],
)