File: setup.py

package info (click to toggle)
python-pangolearn 2022-07-09%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184,720 kB
  • sloc: python: 801; sh: 77; makefile: 16
file content (24 lines) | stat: -rw-r--r-- 775 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 pangoLEARN import __version__, _program

setup(name='pangoLEARN',
      version=__version__,
      packages=find_packages(),
      scripts=[],
      package_data={'pangoLEARN':['data/*']},
      description='trained lineage data',
      url='https://github.com/cov-lineages/pangoLEARN',
      author='cov-lineages group',
      author_email='aine.otoole@ed.ac.uk',
      entry_points="""
      [console_scripts]
      {program} = pangoLEARN.command:main
      """.format(program = _program),
      include_package_data=True,
      keywords=[],
      zip_safe=False)