-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 756 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 756 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [i.strip() for i in open('requirements.txt').readlines()]
setup(
name='sramongo',
version='1.1.1',
description="A package to download metadata from SRA/Biosample/Geo and dump into a mongo database.",
author="Justin M Fear",
author_email='justin.m.fear@gmail.com',
url='https://github.com/jfear/sramongo',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license="MIT license",
entry_points={
'console_scripts':
[
'sra2mongo = sramongo.sra2mongo:main',
],
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)