-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 changed file
with
54 additions
and
0 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,54 @@ | ||
from setuptools import setup | ||
from os import path | ||
|
||
# Get the long description from the README file | ||
here = path.abspath(path.dirname(__file__)) | ||
with open(path.join(here, 'README.md'), encoding = 'utf-8') as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name = 'classconvergence', | ||
version = '1.0', | ||
|
||
description = 'Plot the class distribution as a function of iteration from a Class2D or Class3D job from RELION', | ||
long_description = readme, | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/Guillawme/classconvergence', | ||
|
||
author = 'Guillaume Gaullier', | ||
author_email = '[email protected]', | ||
|
||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Bio-Informatics', | ||
'Topic :: Scientific/Engineering :: Visualization', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Operating System :: OS Independent', | ||
'Environment :: Console', | ||
'Natural Language :: English' | ||
], | ||
keywords = 'cryo-EM class distribution plot visualization', | ||
|
||
py_modules = ["classconvergence"], | ||
|
||
python_requires = '>=3.9.1', | ||
install_requires = [ | ||
'click>=7.1.2', | ||
'matplotlib>=3.3.2', | ||
'starfile>=0.4.4' | ||
], | ||
|
||
entry_points = { | ||
'console_scripts': [ | ||
'classconvergence=classconvergence:cli' | ||
] | ||
}, | ||
|
||
project_urls = { | ||
'Bug Reports': 'https://github.com/Guillawme/classconvergence/issues', | ||
'Source': 'https://github.com/Guillawme/classconvergence' | ||
} | ||
) |