forked from wojciechczaja/GraviPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.2 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
import setuptools
from gravipy import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="GraviPy",
version=__version__,
description="Tensor Calculus Package for General Relativity",
long_description=long_description,
url="",
author="Wojciech Czaja and contributors",
author_email="[email protected]",
maintainer="Wojciech Czaja",
maintainer_email="[email protected]",
license="BSD",
packages=["gravipy"],
include_package_data=True,
install_requires=["sympy >= 1.4"],
platforms="any",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)