forked from cov-lineages/pango-designation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 797 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
from setuptools import setup, find_packages
import glob
import os
import pkg_resources
# Note: the _program variable is set in __init__.py.
# it determines the name of the package/final command line tool.
from pango_designation import __version__, _program
setup(name='pango_designation',
version=__version__,
packages=find_packages(),
scripts=[],
package_data={'pango_designation':['alias_key.json']},
description='PANGO lineage designations for SARS-CoV-2',
url='https://github.com/cov-lineages/pango-designation',
author='cov-lineages group',
entry_points="""
[console_scripts]
{program} = pango_designation.command:main
""".format(program = _program),
include_package_data=True,
keywords=[],
zip_safe=False)