-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (24 loc) · 988 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
from distutils.core import setup
from setuptools import find_packages
import alphascreen
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='alphascreen',
version=alphascreen.__version__,
description='Streamlined preparation and analysis of AlphaFold protein-protein interactions.',
author='Sami Chaaban',
author_email='[email protected]',
url='http://pypi.python.org/pypi/alphascreen/',
#long_description=long_description,
#long_description_content_type='text/markdown',
packages=find_packages(),
entry_points={
"console_scripts": [
"alphascreen = alphascreen.__main__:main",
],
},
install_requires=["pandas","unipressed", "matplotlib", "numpy", "opencv-python", "openpyxl", "biopython", "chardet"],
python_requires='>=3.8'
)