-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.17 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 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='CavityDesignHub',
version='0.1.0',
description='A GUI for accelerating cavity design.',
long_description=readme,
author='Sosoho-Abasi Udongwo',
author_email='numurho@gmail.com',
url=r'https://github.com/Dark-Elektron/CavityDesignHub',
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",
],
)