-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.29 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.29 KB
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
"""
This setup.py allows your python package to be installed.
Please completely update the parameters in the opts dictionary.
For more information, see https://stackoverflow.com/questions/1471994/what-is-setup-py
"""
from setuptools import setup, find_packages
PACKAGES = find_packages()
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
opts = dict(name='pwseqdist',
maintainer='Andrew Fiore-Gartland',
maintainer_email='agartlan@fredhutch.org',
description='Efficiently computes distances between protein sequences',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/agartland/pwseqdist',
license='MIT',
author='Andrew Fiore-Gartland',
author_email='agartlan@fredhutch.org',
version='0.6',
packages=PACKAGES
)
install_reqs = [
'numpy>=1.16.4',
'pandas>=0.24.2',
'parasail>=1.1.17',
'parmap>=1.5.2',
'scipy>=1.2.1',
'numba']
if __name__ == "__main__":
setup(**opts, install_requires=install_reqs)