-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
65 lines (59 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
###
# © 2018 The Board of Trustees of the Leland Stanford Junior University
# Nathaniel Watson
# nathankw@stanford.edu
###
# 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.
# PSF tutorial for packaging up projects:
# https://packaging.python.org/tutorials/packaging-projects/
import glob
import os
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
SCRIPTS_DIR = os.path.join("encode_utils", "scripts")
scripts = glob.glob(os.path.join(SCRIPTS_DIR, "*.py"))
scripts.remove(os.path.join(SCRIPTS_DIR, "__init__.py"))
scripts.append(os.path.join("encode_utils", "MetaDataRegistration", "eu_register.py"))
setup(
author="Nathaniel Watson",
author_email="nathankw@stanford.edu",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
description="Client and tools for ENCODE data submitters.",
install_requires=[
"awscli",
"boto3",
"exifread",
"google-api-python-client",
"google-cloud-storage==1.28.1",
"inflection",
"jsonschema",
"pillow",
"requests",
"urllib3",
],
extras_require={
"dev": [
"pytest",
"pytest-mock",
],
},
long_description=long_description,
long_description_content_type="text/markdown",
name="encode-utils",
packages=find_packages(),
package_data={"encode_utils": [os.path.join("tests", "data", "*")]},
project_urls={
"Read the Docs": "https://encode-utils.readthedocs.io/en/latest",
},
scripts=scripts,
url="https://github.com/StanfordBioinformatics/encode_utils", # home page
version="2.11.0",
)