-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge in changes from prime/main fixing conflicts.
- Loading branch information
Showing
6 changed files
with
751 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import io | ||
import os | ||
|
||
from setuptools import setup, find_packages | ||
|
||
SETUP_DIR = os.path.dirname(os.path.abspath(__file__)) | ||
|
||
|
||
# List all of your Python package dependencies in the | ||
# requirements.txt file | ||
|
||
def readfile(filename, split=False): | ||
with io.open(filename, encoding="utf-8") as stream: | ||
if split: | ||
return stream.read().split("\n") | ||
return stream.read() | ||
|
||
|
||
readme = readfile("README.rst", split=True) | ||
# For requirements not hosted on PyPi place listings | ||
# into the 'requirements.txt' file. | ||
requires = [ | ||
# minimal requirements listing | ||
"cmlibs.maths >= 0.3", | ||
"cmlibs.utils >= 0.10", | ||
"cmlibs.zinc >= 4.0" | ||
] | ||
readme.extend(['', 'License', '=======', '', '::', '']) | ||
source_license = readfile("LICENSE") | ||
|
||
setup( | ||
name="scaffoldfitter", | ||
version="0.10.0", | ||
description="Scaffold/model geometric fitting library using Zinc.", | ||
long_description="\n".join(readme) + source_license, | ||
long_description_content_type="text/x-rst", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps." | ||
], | ||
author="Auckland Bioengineering Institute", | ||
author_email="[email protected]", | ||
url="https://github.com/ABI-Software/scaffoldfitter", | ||
license="Apache Software License", | ||
packages=find_packages("src"), | ||
package_dir={"": "src"}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=requires, | ||
) |
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
Oops, something went wrong.