-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (33 loc) · 991 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='afusion',
version='1.2.2.2',
author='Han Wang',
author_email='[email protected]',
description='AFusion: AlphaFold 3 GUI & Toolkit with Visualization',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/Hanziwww/AlphaFold3-GUI',
packages=find_packages(include=['afusion', 'afusion.*']),
include_package_data=True,
install_requires=[
'streamlit',
'pandas',
'loguru',
'numpy',
'py3Dmol',
'biopython',
'plotly',
],
entry_points={
'console_scripts': [
'afusion = afusion.cli:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.10',
)