forked from LASY-org/lasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.88 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import find_packages, setup
import lasy # In order to extract the version number
# README file is long description
with open("./README.md", encoding="utf-8") as f:
long_description = f.read()
# Get the package requirements from the requirements.txt files
install_requires = []
with open("./requirements.txt") as f:
install_requires = [line.strip("\n") for line in f.readlines()]
tests_require = []
with open("./tests/requirements.txt") as f:
tests_require = [line.strip("\n") for line in f.readlines()]
setup(
name="lasy",
version=lasy.__version__,
packages=find_packages("."),
description="LAser pulse manipulation made eaSY",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rob Shalloo, Maxence Thevenet, Remi Lehe, Axel Huebl, Igor Adriyash, Soeren Jalas, Angel Ferran Pousa, Luca Fedeli",
# author_email='',
maintainer="Maxence Thevenet, Remi Lehe, Axel Huebl",
python_requires=">=3.7",
install_requires=install_requires,
tests_require=tests_require,
extras_require={
"tests": tests_require,
},
url="https://github.com/LASY-org/lasy",
project_urls={
"Documentation": "https://lasydoc.readthedocs.io",
"Source": "https://github.com/LASY-org/lasy",
"Tracker": "https://github.com/LASY-org/lasy/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
license="BSD-3-Clause-LBNL",
license_files=["license.txt", "legal.txt"],
)