forked from gloriachin/Translator_component_toolkit
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 809 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 809 Bytes
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
setup(
name='TCT',
version='0.1.6',
packages=find_packages(),
install_requires=[
# List your library's dependencies here
'requests',
'pandas',
'seaborn',
'matplotlib',
'ipycytoscape',
'networkx',
'numpy',
'openai',
'PyYAML',
],
entry_points={
'console_scripts': [
# Define any command-line scripts here
],
},
url='https://github.com/NCATSTranslator/Translator_component_toolkit',
author='Guangrong Qin',
author_email='guangrong.qin@isbscience.org',
description='Translator Component Toolkit',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='MIT',
)