Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbdmodel
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tbgl
tools
arbdmodel
Commits
63761a8b
Commit
63761a8b
authored
1 year ago
by
cmaffeo2
Browse files
Options
Downloads
Patches
Plain Diff
Update setup.cfg
parent
c4e3578e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arbdmodel/RELEASE-VERSION
+1
-0
1 addition, 0 deletions
arbdmodel/RELEASE-VERSION
setup.cfg
+31
-0
31 additions, 0 deletions
setup.cfg
setup.py
+0
-32
0 additions, 32 deletions
setup.py
with
32 additions
and
32 deletions
arbdmodel/RELEASE-VERSION
0 → 100644
+
1
−
0
View file @
63761a8b
0.1.dev22
This diff is collapsed.
Click to expand it.
setup.cfg
0 → 100644
+
31
−
0
View file @
63761a8b
[metadata]
name
=
mrdna
version
=
file: mrdna/RELEASE-VERSION
description
=
Multi-resolution DNA simulations
long_description
=
file: README.md
long_description_content_type
=
text/markdown
author
=
Christopher Maffeo
author_email
=
cmaffeo2@illinois.edu
url
=
https://gitlab.engr.illinois.edu/tbgl/tools/mrdna,
project_urls
=
gitlab
repository
=
https://gitlab.engr.illinois.edu/tbgl/tools/mrdna,
license
=
University of Illinois Open Source License
license_file
=
LICENSE
platforms
=
unix, linux, osx, cygwin, win32
classifiers
=
Programming
Language
::
Python
::
3,
License
::
UIUC
Open
source
License
Operating
System
::
OS
Independent
[options]
include_package_data
=
True
packages
=
find:
install_requires
=
numpy>=1.14
scipy>=1.1
appdirs>=1.4
mdanalysis>=2.0.0
python_requires
=
>=3.5
zip_safe
=
no
This diff is collapsed.
Click to expand it.
setup.py
deleted
100644 → 0
+
0
−
32
View file @
c4e3578e
import
setuptools
with
open
(
"
README.md
"
,
"
r
"
)
as
fh
:
long_description
=
fh
.
read
()
with
open
(
"
LICENSE
"
,
"
r
"
)
as
fh
:
license
=
fh
.
read
()
from
arbdmodel.version
import
get_version
setuptools
.
setup
(
name
=
"
arbdmodel
"
,
version
=
get_version
(),
author
=
"
Christopher Maffeo
"
,
author_email
=
"
cmaffeo2@illinois.edu
"
,
description
=
"
Python interface to ARBD simulation engine
"
,
license
=
license
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
url
=
"
https://gitlab.engr.illinois.edu/tbgl/tools/arbdmodel
"
,
packages
=
setuptools
.
find_packages
(),
include_package_data
=
True
,
install_requires
=
(
'
numpy>=1.14
'
,
'
appdirs>=1.4
'
),
classifiers
=
(
"
Programming Language :: Python :: 3
"
,
"
License :: UIUC Open source License
"
,
"
Operating System :: OS Independent
"
,
),
)
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