-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (35 loc) · 1.22 KB
/
setup.py
File metadata and controls
executable file
·38 lines (35 loc) · 1.22 KB
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
35
36
37
38
import setuptools
from os import path
import hlapred
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
# with open(path.join(here, 'README.md')) as f:
# long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='HLAIIPred',
version=hlapred.__version__,
author='Mojtaba Haghighatlari',
author_email='mojtaba.haghighatlari@pfizer.com',
project_urls={
'Source': 'https://github.com/pfizer-rd/HLAIIPred',
},
description=
"A Python library that provides tools and models for deep learning of HLA class II epitopes.",
# long_description=long_description,
# long_description_content_type="text/markdown",
scripts=['cli/HLAIIPred'],
keywords=[
'Machine Learning', 'HLAII', 'MHC', 'Deep Learning',
],
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=False,
)