-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (48 loc) · 1.91 KB
/
setup.py
File metadata and controls
executable file
·50 lines (48 loc) · 1.91 KB
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
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="spacetimeengine",
version="0.1.11",
packages=find_packages(include=["spacetimeengine", "spacetimeengine.*"]),
author="Michael.C Ryan",
author_email="spacetime.engineer@gmail.com",
description="A Python physics utility which can analyze any given metric solution to the Einstein field equations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spacetimeengineer/spacetimeengine",
project_urls={
"Documentation": "https://github.com/spacetimeengineer/spacetimeengine#readme",
"Source": "https://github.com/spacetimeengineer/spacetimeengine",
"Tracker": "https://github.com/spacetimeengineer/spacetimeengine/issues",
},
license="BSD License",
install_requires=[
"sympy>=1.0"
],
extras_require={
"testing": ["nose"]
},
tests_require=[
"nose"
],
test_suite="nose.collector",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
python_requires=">=3.6",
include_package_data=True, # Ensures files specified in MANIFEST.in are included
zip_safe=False, # Ensures the package can be safely installed as a directory
)