-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (54 loc) · 2.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""
Setup file for pygran_analysis
Created on October 10, 2019
Author: Andrew Abi-Mansour
This is the::
██████╗ ██╗ ██╗ ██████╗ ██████╗ █████╗ ███╗ ██╗
██╔══██╗╚██╗ ██╔╝██╔════╝ ██╔══██╗██╔══██╗████╗ ██║
██████╔╝ ╚████╔╝ ██║ ███╗██████╔╝███████║██╔██╗ ██║
██╔═══╝ ╚██╔╝ ██║ ██║██╔══██╗██╔══██║██║╚██╗██║
██║ ██║ ╚██████╔╝██║ ██║██║ ██║██║ ╚████║
╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝
DEM simulation and analysis toolkit
http://www.pygran.org, [email protected]
Core developer and main author:
Andrew Abi-Mansour, [email protected]
PyGran is open-source, distributed under the terms of the GNU Public
License, version 2 or later. It is distributed in the hope that it will
be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You should have
received a copy of the GNU General Public License along with PyGran.
If not, see http://www.gnu.org/licenses . See also top-level README
and LICENS
"""
import os
import warnings
from setuptools import find_packages, setup
import versioneer
setup(
name="pygran_analysis",
version=versioneer.get_version(),
author="Andrew Abi-Mansour",
author_email="[email protected]",
description=(
"A package for rapid quantitative analysis of granular/powder systems"
),
license="GNU v2",
keywords="Discrete Element Method, Granular Materials",
url="http://pygran.org",
packages=find_packages(),
include_package_data=True,
install_requires=["numpy", "scipy"],
extras_require={"extras": ["vtk"], "tests": ["pytest"]},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
],
zip_safe=False,
cmdclass=versioneer.get_cmdclass(),
)