-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (35 loc) · 1.03 KB
/
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
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# Authors: Santi Villalba <sdvillal@gmail.com>
# Licence: BSD 3 clause
from setuptools import setup, find_packages
setup(
name='abbert2',
version='1.0.0dev0',
packages=find_packages(),
url='',
license='BSD 3 clause',
author='Santi Villalba',
author_email='sdvillal@gmail.com',
description='Antibody-specific language models',
include_package_data=True,
# at the moment deps are managed solely via conda
install_requires=[],
tests_require=[],
extras_require={},
entry_points={
'console_scripts': [
'oas = abbert2.oas.cli:main'
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
platforms=['Any'],
)