-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
42 lines (38 loc) · 1.19 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
from setuptools import setup, find_packages
try:
__version__ = open("EMpy/version.py").read().split('"')[1]
except ImportError:
__version__ = ""
__author__ = "Lorenzo Bolla"
with open("README.rst", "r") as readme:
long_description = readme.read()
setup(
name="ElectroMagneticPython",
version=__version__,
author="Lorenzo Bolla",
author_email="[email protected]",
description="EMpy - ElectroMagnetic Python",
long_description=long_description,
url="http://lbolla.github.io/EMpy/",
download_url="https://github.com/lbolla/EMpy",
license="BSD",
platforms=["Windows", "Linux", "Mac OS-X"],
packages=find_packages(),
install_requires=[
"numpy>=1.18",
"scipy>=1.7",
"matplotlib>=3.1",
],
provides=["EMpy"],
test_suite="tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
],
)