-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.48 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.48 KB
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
readme = f.read()
with open(os.path.join(os.path.dirname(__file__), 'LICENSE')) as f:
license = f.read()
setup(
name='cavsim2d',
version='13.08.2024',
description='A set of python codes for quick 2D axisymmetric rf structure analysis.',
long_description=readme,
author='Sosoho-Abasi Udongwo',
author_email='numurho@gmail.com',
url=r'https://github.com/Dark-Elektron/cavsim2d',
license=license,
python_requires='>=3.0, <4',
install_requires=[
'matplotlib>=3.8.4',
'pandas>=2.2.2',
'numpy',
'scipy>=1.13.1',
'psutil>=6.0.0',
'paretoset',
'ipython',
'tqdm>=4.66.4',
'setuptools>=72.1.0',
'termcolor>=2.1.0',
'ngsolve',
'openpyxl'
],
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Topic :: Scientific/Engineering :: Physics",
],
)