forked from StanfordBioinformatics/encode_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.57 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
# -*- coding: utf-8 -*-
###
# © 2018 The Board of Trustees of the Leland Stanford Junior University
# Nathaniel Watson
###
# For some useful documentation, see
# https://docs.python.org/2/distutils/setupscript.html.
# This page is useful for dependencies:
# http://python-packaging.readthedocs.io/en/latest/dependencies.html.
import glob
import os
from setuptools import setup, find_packages
SCRIPTS_DIR = "encode_utils/scripts/"
scripts = glob.glob(os.path.join(SCRIPTS_DIR,"*.py"))
scripts.remove(os.path.join(SCRIPTS_DIR,"__init__.py"))
scripts.append("encode_utils/MetaDataRegistration/eu_register.py")
setup(
name = "encode utils",
version = "2.3.1",
description = "Client and tools for ENCODE data submitters.",
author = "Nathaniel Watson",
author_email = "[email protected]",
url = "https://github.com/StanfordBioinformatics/encode_utils/wiki",
packages = find_packages(),
install_requires = [
"awscli",
"google-api-python-client",
"jsonschema",
"requests",
"urllib3"],
scripts = scripts,
package_data = {"encode_utils": ["tests/data/*"]}
)