Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lbmpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pycodegen
lbmpy
Commits
63fcf560
Commit
63fcf560
authored
5 years ago
by
Martin Bauer
Browse files
Options
Downloads
Patches
Plain Diff
Added long description (readme) to package
parent
aa81144f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#22335
canceled
5 years ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+15
-9
15 additions, 9 deletions
setup.py
with
15 additions
and
9 deletions
setup.py
+
15
−
9
View file @
63fcf560
...
@@ -5,11 +5,11 @@ from setuptools import setup, find_packages
...
@@ -5,11 +5,11 @@ from setuptools import setup, find_packages
import
distutils
import
distutils
from
contextlib
import
redirect_stdout
from
contextlib
import
redirect_stdout
from
importlib
import
import_module
from
importlib
import
import_module
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'
doc
'
))
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'
doc
'
))
quick_tests
=
[
quick_tests
=
[
#'test_serial_scenarios.test_ldc_mrt',
#
'test_serial_scenarios.test_ldc_mrt',
'
test_serial_scenarios.test_channel_srt
'
,
'
test_serial_scenarios.test_channel_srt
'
,
]
]
...
@@ -53,9 +53,15 @@ try:
...
@@ -53,9 +53,15 @@ try:
except
ImportError
:
except
ImportError
:
version
=
open
(
'
RELEASE-VERSION
'
,
'
r
'
).
read
()
version
=
open
(
'
RELEASE-VERSION
'
,
'
r
'
).
read
()
def
readme
():
with
open
(
'
README.md
'
)
as
f
:
return
f
.
read
()
setup
(
name
=
'
lbmpy
'
,
setup
(
name
=
'
lbmpy
'
,
version
=
version
,
version
=
version
,
description
=
'
Code Generation for Lattice Boltzmann Methods
'
,
description
=
'
Code Generation for Lattice Boltzmann Methods
'
,
long_description
=
readme
(),
author
=
'
Martin Bauer
'
,
author
=
'
Martin Bauer
'
,
license
=
'
AGPLv3
'
,
license
=
'
AGPLv3
'
,
author_email
=
'
martin.bauer@fau.de
'
,
author_email
=
'
martin.bauer@fau.de
'
,
...
@@ -63,13 +69,13 @@ setup(name='lbmpy',
...
@@ -63,13 +69,13 @@ setup(name='lbmpy',
packages
=
[
'
lbmpy
'
]
+
[
'
lbmpy.
'
+
s
for
s
in
find_packages
(
'
lbmpy
'
)],
packages
=
[
'
lbmpy
'
]
+
[
'
lbmpy.
'
+
s
for
s
in
find_packages
(
'
lbmpy
'
)],
install_requires
=
[
'
pystencils
'
],
install_requires
=
[
'
pystencils
'
],
classifiers
=
[
classifiers
=
[
'
Development Status :: 4 - Beta
'
,
'
Development Status :: 4 - Beta
'
,
'
Framework :: Jupyter
'
,
'
Framework :: Jupyter
'
,
'
Topic :: Software Development :: Code Generators
'
,
'
Topic :: Software Development :: Code Generators
'
,
'
Topic :: Scientific/Engineering :: Physics
'
,
'
Topic :: Scientific/Engineering :: Physics
'
,
'
Intended Audience :: Developers
'
,
'
Intended Audience :: Developers
'
,
'
Intended Audience :: Science/Research
'
,
'
Intended Audience :: Science/Research
'
,
'
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
'
,
'
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
'
,
],
],
python_requires
=
"
>=3.6
"
,
python_requires
=
"
>=3.6
"
,
extras_require
=
{
extras_require
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment