-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
4 changed files
with
30 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Include the README | ||
include *.md | ||
|
||
# Include the license file | ||
include LICENSE |
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,5 @@ | ||
#!/usr/bin/env bash | ||
rm -rf build dist favites_lite.egg-* | ||
python3 setup.py sdist | ||
python3 setup.py bdist_wheel --universal | ||
twine upload dist/* |
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
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,19 @@ | ||
from json import load | ||
from setuptools import setup, find_packages | ||
VERSION = load(open('global.json'))['VERSION'] | ||
|
||
setup( | ||
name='favites_lite', # This is the name of your PyPI-package. | ||
version=VERSION, # Update the version number for new releases | ||
scripts=['favites_lite.py',], # The name of your script, and also the command you'll be using for calling it | ||
description='FAVITES-Lite: A lightweight framework for viral transmission and evolution simulation', | ||
long_description='FAVITES-Lite: A lightweight framework for viral transmission and evolution simulation', | ||
long_description_content_type='text/plain', | ||
url='https://github.com/niemasd/FAVITES-Lite', | ||
author='Niema Moshiri', | ||
author_email='[email protected]', | ||
packages=find_packages(exclude=['.devcontainer', '.github', '.tests', 'example', 'scripts', 'webapp']), | ||
zip_safe = False, | ||
install_requires=['numpy', 'scipy', 'treesap', 'treeswift'], | ||
include_package_data=True | ||
) |