-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (30 loc) · 1.04 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
import setuptools
with open("requirements.txt", "r") as reqs_f:
requirements = reqs_f.read().split()
with open("LICENSE", "r") as lf:
LICENSE = lf.read()
setuptools.setup(
name="mogwai-protein",
version="0.0.1",
author="Nick Bhattacharya",
author_email="[email protected]",
description="A package for training and evaluating probabilistic models of protein families.",
url="https://github.com/nickbhat/mogwai",
packages=setuptools.find_packages(),
license=LICENSE,
install_requires=requirements,
scripts=["scripts/download_example.sh"],
entry_points={
"console_scripts": [
"mogwai-train=mogwai.train:train",
"mogwai-align=mogwai.alignment:make_a3m_cli",
]
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)