-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
55 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,12 @@ | |
*.o | ||
*.mod | ||
*.a | ||
*.bak | ||
*.sav | ||
*.pyc | ||
__pycache__ | ||
*build/ | ||
*_build/ | ||
_gitmsg.saved.txt | ||
*.egg-info | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ['setuptools', 'wheel', 'numpy'] | ||
build-backend = 'setuptools.build_meta' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[metadata] | ||
name = sktools | ||
version = 22.1 | ||
author = DFTB+ developers | ||
url = http://www.dftbplus.org | ||
description = Tools to Generate Electronic SK-parameters | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
license = LGPL-3.0-or-later | ||
license_files = | ||
../COPYING | ||
../COPYING.LESSER | ||
platform = any | ||
|
||
[options] | ||
include_package_data = True | ||
package_dir = | ||
= src | ||
packages = | ||
sktools | ||
sktools.hsd | ||
sktools.calculators | ||
sktools.skgen | ||
scripts = | ||
bin/collectspinw | ||
bin/collectwavecoeffs | ||
bin/skdiff | ||
bin/skgen | ||
install_requires = | ||
numpy | ||
python_requires = >=3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
#!/usr/bin/env python3 | ||
from distutils.core import setup | ||
|
||
setup( | ||
name="sktools", | ||
version='20.2', | ||
description="Tools to create SK-parameters", | ||
author="DFTB+ developers", | ||
url="http://www.dftbplus.org", | ||
platforms="platform independent", | ||
package_dir={"": "src"}, | ||
packages=["sktools", "sktools.hsd", "sktools.calculators", "sktools.skgen"], | ||
scripts=[ | ||
"bin/skgen", | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering", | ||
], | ||
long_description=""" | ||
Processing and converting data related to the DFTB+ package | ||
----------------------------------------------------------- | ||
A few scripts which should make the life of DFTB+ users easier, by providing | ||
functions to process and convert various DFTB+ data formats. | ||
""", | ||
requires=[ "numpy" ] | ||
) | ||
''' | ||
Legacy setup.py file that gathers its | ||
configuration from setup.cfg and pyproject.toml | ||
''' | ||
|
||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
|
||
|
||
if __name__ == '__main__': | ||
setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
PACKAGE_VERSION = '0.4' | ||
PACKAGE_VERSION = '22.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters