-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.29 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
# -*- 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='[email protected]',
url=r'https://github.com/Dark-Elektron/cavsim2d',
license=license,
python_requires='>=3.0, <4',
install_requires=[
'pandas>=2.0.0',
'numpy>=1.14.5',
'matplotlib>=2.2.0'
],
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",
],
)