forked from ARY2260/openpom
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
43 lines (30 loc) · 1.63 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
from setuptools import setup, find_packages
# Read the requirements from the requirements.txt file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='openpom',
version='0.2.4',
description='Open-source Principal Odor Map models for Olfaction',
license='MIT',
long_description="""Open Principal Odor Map
https://github.com/ARY2260/openpom
Replication of the Principal Odor Map paper by Brian K. Lee et al. (2023).
The model is implemented such that it integrates with DeepChem (https://github.com/deepchem/deepchem).
Contributors:
Aryan Amit Barsainyan, National Institute of Technology Karnataka, India: code, data cleaning, model development
Ritesh Kumar, CSIR-CSIO, Chandigarh, India: data cleaning, hyperparameter optimisation
Pinaki Saha, University of Hertfordshire, UK: discussions and feedback
Michael Schmuker, University of Hertfordshire, UK: conceptualisation, project lead
References:
A Principal Odor Map Unifies Diverse Tasks in Human Olfactory Perception.
Brian K. Lee, Emily J. Mayhew, Benjamin Sanchez-Lengeling, Jennifer N. Wei, Wesley W. Qian, Kelsie A. Little,
Matthew Andres, Britney B. Nguyen, Theresa Moloy, Jacob Yasonik, Jane K. Parker, Richard C. Gerkin,
Joel D. Mainland, Alexander B. Wiltschko
Science381,999-1006(2023).DOI: [10.1126/science.ade4401](https://doi.org/10.1126/science.ade4401)
bioRxiv 2022.09.01.504602; doi: [https://doi.org/10.1101/2022.09.01.504602](https://doi.org/10.1101/2022.09.01.504602)""",
author='Aryan Amit Barsainyan',
author_email='aryan.barsainyan@gmail.com',
packages=find_packages(),
install_requires=requirements,
)