Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalin Nonchev committed May 9, 2021
1 parent b0b800f commit ca8db53
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
from setuptools import setup, find_packages

setup(name='gnomad_db',
version='0.0.2',
description='This package scales the huge gnomAD files to a SQLite database, which is easy and fast to query. It extracts from a gnomAD vcf the minor allele frequency for each variants.',
version='0.0.3',
description='This package scales the huge gnomAD files to a SQLite database, which is easy and fast to query. It extracts from a gnomAD vcf the minor allele frequency for each variant.',
author='KalinNonchev',
author_email='[email protected]',
license='MIT License',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
url="https://github.com/KalinNonchev/gnomAD_MAF",
packages=find_packages(), # find packages
include_package_data=True,
install_requires=['pandas', 'numpy'] # external packages as dependencies
install_requires=['pandas', 'numpy'], # external packages as dependencies,
python_requires='>=3.6'
)

0 comments on commit ca8db53

Please sign in to comment.