Skip to content

Commit

Permalink
add setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Storrs committed Aug 8, 2022
1 parent 8ad491a commit 861f8d9
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
data/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
37 changes: 37 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from setuptools import setup, find_packages
from setuptools.command.install import install
from os import path
import subprocess

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
# $ pip install violet
name='ancestry',
version='0.0.1',
description='A tool for ancestry prediction',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ding-lab/ancestry-pipeline',
author='Erik Storrs',
author_email='[email protected]',
classifiers=[
'License :: OSI Approved :: MIT License',
],
keywords='Ancestry bam genomics',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
],
include_package_data=True,

entry_points={
'console_scripts': [
'run-ancestry=ancestry.main:main',
],
},
)

0 comments on commit 861f8d9

Please sign in to comment.