-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
import requests
import os
import sys
from pathlib import Path
sys.path.append(str(Path(__file__).resolve().parent / 'src/ticlust'))
from install_hooks import CustomInstall
import setuptools_scm
setup(
name="ticlust",
use_scm_version=True,
description="Taxonomy Informed Clustering (TIC) is a tool for clustering bacterial sequences based on their taxonomy and hypothetically complete taxonomy levels.",
author="Mohsen Pourjam, Ilias Lagkouvardos",
author_email="pourjam.cs@hotmial.com, ilias.lagkouvardos@gmail.com",
project_urls={
"Repository": "https://github.com/MPourjam/TIClust",
},
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.6",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"ticlust": ["bin/vsearch"],
},
cmdclass={
"install": "ticlust.install_hooks.CustomInstall",
},
)