"examples/trials/systems/vscode:/vscode.git/clone" did not exist on "4a76b68cb24277a4c536b21ce8809a013889cfd3"
Unverified Commit 56aa4903 authored by Tri Dao's avatar Tri Dao Committed by GitHub
Browse files

Merge pull request #75 from lucidrains/main

allow for uploading to pypi
parents 43ab0b52 dcf39865
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
recursive-include csrc *.cu
recursive-include csrc *.h
recursive-include csrc *.cuh
recursive-include csrc *.cpp
recursive-include flash_attn *.cu
recursive-include flash_attn *.h
recursive-include flash_attn *.cuh
recursive-include flash_attn *.cpp
clean_dist:
rm -rf dist/*
create_dist: clean_dist
python setup.py sdist
upload_package: create_dist
twine upload dist/*
...@@ -164,8 +164,8 @@ setup( ...@@ -164,8 +164,8 @@ setup(
url="https://github.com/HazyResearch/flash-attention", url="https://github.com/HazyResearch/flash-attention",
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: Apache 2.0", "License :: OSI Approved :: Apache Software License",
"Operating System :: Linux", "Operating System :: Unix",
], ],
ext_modules=ext_modules, ext_modules=ext_modules,
cmdclass={"build_ext": BuildExtension} if ext_modules else {}, cmdclass={"build_ext": BuildExtension} if ext_modules else {},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment