-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 847 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 847 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
from setuptools import setup
import re
import os
import sys
setup(
name="WebFiles",
version="0.0.01",
python_requires=">3.7.0",
author="Michael E. Vinyard - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard",
author_email="mvinyard@broadinstitute.org",
url="",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="Download and read files from the web.",
packages=[
"web_files",
],
install_requires=[
"wget>=3.2",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)