-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Storrs
committed
Aug 8, 2022
1 parent
8ad491a
commit 861f8d9
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
data/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
}, | ||
) |