-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1003 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
24
25
26
27
28
29
30
31
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
setup(
name="ticlust",
version="1.0.2",
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="[email protected], [email protected]",
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",
},
)