-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.27 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") as fh:
long_description = fh.read()
short_description = 'Numerical simulation environment of constrained multi-body systems in python.'
setuptools.setup(
name = "uraeus.nmbd.python",
namespace_packages=['uraeus', 'uraeus.nmbd'],
version = "0.0.1.dev4",
author = "Khaled Ghobashy",
author_email = "[email protected]",
description = short_description,
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/khaledghobashy/uraeus_nmbd_python",
packages = ['uraeus.nmbd'] + setuptools.find_packages(exclude=("tests",)),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics"
],
python_requires = '>=3.6',
install_requires=[
'uraeus.smbd>=0.0.1.dev3',
'numpy',
'scipy',
'numba',
'pandas'],
)