-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.24 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
short_description = 'A python package for symbolic creation and analysis of constrained multi-body systems.'
setuptools.setup(
name = "uraeus.smbd",
namespace_packages=['uraeus'],
version = "0.0.1.dev3",
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_smbd",
packages = ['uraeus'] + 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=[
'sympy==1.4',
'networkx',
'cloudpickle',
'matplotlib'
],
)