-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 854 Bytes
/
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
from setuptools import setup, find_packages
import os
setup(
name="cbioportal_etl",
version="1.0.0",
author="Jessica Wong & Miguel Brown",
description="A tool/ETL for converting data from CAVATICA and Data Warehouse to PedcBioportal format",
packages=find_packages(),
include_package_data=True,
install_requires=[
"wheel",
"psycopg2-binary",
"boto3",
"pandas",
"sevenbridges-python",
"PyYAML",
"dsnparse",
"scipy",
"bravado",
"mysqlclient",
"importer"
],
entry_points={
"console_scripts": [
"cbioportal_etl=cbioportal_etl.main:main",
]
},
package_data={
"cbioportal_etl": [
"REFS/*",
"scripts/*",
"STUDY_CONFIGS/*",
],
},
python_requires=">=3.6",
)