-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 918 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
from setuptools import setup, find_packages
def read_file(file):
with open(file) as fin:
return fin.read()
setup(
name="protein-adjacency-net",
version="0.1.14",
description="Protein Adjacency Graph Neural Network.",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
author="Alexey Strokach",
author_email="alex.strokach@utoronto.ca",
url="https://gitlab.com/ostrokach/protein-adjacency-net",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"pagnn": ["model_data/*.state", "training/data/*"]},
include_package_data=True,
zip_safe=False,
keywords="pagnn",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
test_suite="tests",
)