forked from MatthewFilipovich/pycharge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.3 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pycharge",
version="1.0",
author="Matthew Filipovich",
author_email="matthew.filipovich@queensu.ca",
description="Electrodynamics simulator for calculating the fields and potentials generated by moving point charges and simulating oscillating dipoles.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MatthewFilipovich/pycharge",
project_urls={
"Documentation": "https://pycharge.readthedocs.io/",
"Bug Tracker": "https://github.com/MatthewFilipovich/pycharge/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization"
],
license="GNU General Public License v3 (GPLv3)",
packages=setuptools.find_packages(where="."),
python_requires=">=3.7",
install_requires=[
'numpy',
'dill',
'scipy',
'matplotlib',
'tqdm'
],
extras_require={"MPI": ['mpi4py']}
)