-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (38 loc) · 1.23 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
34
35
36
37
38
39
40
from setuptools import setup, find_packages
from varvamp import __version__, _program
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='varvamp',
long_description=long_description,
long_description_content_type='text/markdown',
version=__version__,
python_requires=">=3.9",
license_files=('LICENSE'),
packages=find_packages(),
install_requires=[
"biopython>=1.79",
"matplotlib>=3.5.1",
"primer3-py>=1.1.0",
"pandas>=1.4.4",
"numpy>=1.23.3",
"seqfold>=0.7.15",
],
description='Variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses',
url='https://github.com/jonas-fuchs/varVAMP',
author='Dr. Jonas Fuchs',
author_email='[email protected]',
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
],
entry_points="""
[console_scripts]
{program} = varvamp.command:main
""".format(program=_program),
include_package_data=True,
keywords=[],
zip_safe=False
)