-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
30 lines (28 loc) · 985 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
import os
import re
from setuptools import setup, find_packages
here = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(here, "README.md")) as f:
readme = f.read()
with open(os.path.join(here, "src", "signalp6", "__init__.py")) as f:
version = re.search(r'__version__ = (["\'])([^"\']*)\1', f.read())[2]
setup(
name="signalp6",
version=version,
description="SignalP 6.0 signal peptide prediction tool",
long_description=readme,
url="healthtech.dtu.dk",
author="Felix Teufel",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="torch",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6, <4",
)