Skip to content

Commit

Permalink
Merge pull request #1 from glycojones/add-setup-file
Browse files Browse the repository at this point in the history
adding setup.py which has been verified to work with ccp4
  • Loading branch information
AliDariusKhan authored Dec 1, 2022
2 parents a9ad102 + 4a88bac commit d5e1028
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions iris-validation/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import setuptools

with open('README.md', 'r') as infile:
readme = infile.read()

setuptools.setup(
name='iris-validation',
version='0.0.1',
author='William Rochira',
author_email='[email protected]',
description='A package for interactive all-in-one graphical validation of 3D protein model iterations',
long_description=readme,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
package_data={'iris_validation': [
'metrics/percentiles/data/*',
'metrics/rotamer/data/*',
'graphics/js/*',]},
include_package_data=True,
url='https://github.com/glycojones/iris-ccp',
classifiers=[
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent' ],
python_requires='>=3'
)

0 comments on commit d5e1028

Please sign in to comment.