-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·34 lines (31 loc) · 1.15 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
import setuptools
from setuptools import setup, find_packages
import unittest
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = ['sympy']
setuptools.setup(
name="spacetimeengine",
version="0.1.11",
packages=find_packages(),
author="Michael.C Ryan",
author_email="[email protected]",
description="A python physics utility which can analyze any given metric solution to the Einstein field equations.",
test_suite='nose.collector',
tests_require=['nose'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spacetimeengineer/spacetimeengine",
requirements = requirements,
dependency_links = ['https://pypi.python.org/simple'],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
]
)