Created
June 23, 2020 10:51
-
-
Save nomasprime/168ec893cb1a695eb0d3cdbcc9617b27 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
betamax = "*" | |
pytest = "*" | |
lockan = {editable = true, path = "."} | |
[requires] | |
python_version = "3.8" | |
[packages] | |
scrapy = "*" |
This file contains hidden or 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
from setuptools import setup, find_packages | |
setup( | |
name='lockan', | |
packages=find_packages(exclude=['tests']), | |
version='1.0.0' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment