aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 5b2e9fb3ab1e26e97bf387cfe6cd29b7bf309fe2 (plain)
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
"""The setup module"""
from setuptools import setup, find_packages

LONG_DESCRIPTION="""
gn-uploader is a service allowing upload of new data into GeneNetwork. It
performs quality control on the data that is being uploaded to ensure it meets
all conditions before it can be accepted.
"""

setup(
    name="gn-uploader",
    version="0.1.0",
    description="Data uploader and quality-control application.",
    long_description=LONG_DESCRIPTION,
    long_description_content_type="text/plain",
    author="Frederick M. Muriithi",
    author_email="fredmanglis@gmail.com",
    url="https://git.genenetwork.org/gn-uploader",
    include_package_data=True,
    packages=find_packages(
        where=".", exclude=("tests", "tests.*")),
    scripts=[],
    license="AGPLV3",
    install_requires=[
        "redis",
        "Flask",
        "pyyaml",
        "gunicorn",
        "jsonpickle",
        "mysqlclient"],
    tests_require=[
        "mypy",
        "pylint",
        "pytest",
        "hypothesis"])