-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.74 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
from setuptools import setup, find_packages
setup(
name='pygrpm',
version='0.1',
packages=find_packages(), # Automatically find packages in your project
install_requires=[
# 'os', 'io', 'sys', 'datetime', and 'zipfile' are standard libraries and do not need to be listed
'requests',
'pyarrow',
'numpy',
'pandas',
'seaborn',
'matplotlib',
'tqdm',
'gdown',
'nltk',
'pyperclip',
'sentence_transformers'
],
#entry_points={ # Optional: command-line scripts
# 'console_scripts': [
# 'your-command=your_package.module:function',
# ],
#},
author='JohnDef64',
author_email='[email protected]',
description='The GRPM System is a Python-based framework capable of constructing a comprehensive dataset of human genetic polymorphisms associated with nutrition. By integrating data from multiple sources and utilizing MeSH ontology as an organizational structure, this workflow enables researchers to investigate genetic variants with significant associations to specified biomedical subjects. The primary objective of developing this resource was to support nutritionists in exploring gene-diet interactions and implementing personalized nutrition strategies.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/johndef64/GRPM_system',
classifiers=[ # Optional: supply classifiers for search indexing
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Specify required Python versions
)