-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (70 loc) · 2.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from setuptools import setup, find_packages
# Read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='gin', # The name of your package
version='0.1.0', # The initial release version
packages=find_packages(), # Automatically find packages in your project
include_package_data=True, # Include other files listed in MANIFEST.in
# List of dependencies
install_requires=[
"python-dotenv",
"pyrfume",
# Visualization dependencies
'seaborn',
'matplotlib',
'Pillow', # For image manipulation
# Data manipulation dependencies
'pandas',
'numpy',
# Machine learning dependencies
'torch',
'torch_geometric',
'tensorboard',
#'torch_scatter',
# 'scikit-learn==1.2.2',
'scikit-learn',
'imbalanced-learn',
# Conversion dependencies
'jupytext', # for conversion from .py to .ipynb
'nbconvert', # for conversion from .py to .ipynb
# Network dependencies
'requests',
# Molecular visualization dependencies
'rdkit',
# Testing dependencies
'pytest',
# Utility dependencies
'tqdm',
# Cheminformatics dependencies
'rdkit',
],
# Metadata about your package
author='Ryan Young',
author_email='[email protected]',
description='A package for exploring and analyzing DREAM and Pyrfume data',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/synapticsage/tonic',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Smell',
'Odor',
'Machine Learning'
],
# Entry points specify what scripts should be made available to the command line
entry_points={
'console_scripts': [
'explore=explore:main',
],
},
)