-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.26 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
from setuptools import setup, find_packages
setup(
name='guacamole',
version='0.1.0',
author='Your Name', # Replace with your name
author_email='[email protected]', # Replace with your email
description='GC-aware species abundance estimation from metagenomic data.',
long_description='This project implements GuaCAMOLE, a tool for species abundance estimation from metagenomic data.',
long_description_content_type='text/markdown',
url='https://github.com/cibiv/guacamole', # Replace with your GitHub repository
packages=find_packages(), # Automatically find packages in your project
install_requires=[
'pandas',
'numpy>=1.23.0,<1.25',
'matplotlib',
'seaborn',
'biopython',
'scipy',
'qpsolvers',
],
entry_points={
'console_scripts': [
'create-reference-dist=guacamole.create_reference_dist:main', # Entry point for create_reference_dist.py
'guacamole=guacamole.guacamole:main', # Entry point for guacamole.py
],
},
classifiers=[
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
)