-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (31 loc) · 806 Bytes
/
setup.py
File metadata and controls
41 lines (31 loc) · 806 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
from aln2type import version
requirements = [
"pyyaml",
"biopython"
]
setuptools.setup(
name="aln2type",
version=version.__version__,
url="https://github.com/connor-lab/aln2type",
description="",
long_description="",
author="Matt Bull",
author_email="bullmj2@gmail.com",
maintainer="Matt Bull",
maintainer_email="bullmj2@gmail.com",
packages=setuptools.find_packages(),
install_requires=requirements,
entry_points = {
'console_scripts': [
'aln2type = aln2type.cli:main',
]
},
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
)