Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith committed Jan 21, 2020
0 parents commit a0085fd
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .gitignore
@@ -0,0 +1,61 @@
# Project-specific generated files

# Byte-compiled / optimized / DLL files / editor temp files
__pycache__/
*.py[cod]
*~
\#*
.#*
*.swp

# C extensions
*.so

# Distribution / packaging
.Python
/build/
/develop-eggs/
/dist/
/eggs/
/lib/
/lib64/
/parts/
/sdist/
/var/
*.egg-info/
.installed.cfg
*.egg
/.pybuild

# Installer logs
pip-log.txt

# Unit test / coverage reports
htmlcov/
.tox/
.venv/
.coverage
.coverage.*
.cache
.pytest_cache/
.mypy_cache/
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

# Sphinx documentation
doc/_build/
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
include README.md
9 changes: 9 additions & 0 deletions README.md
@@ -0,0 +1,9 @@
This is a placeholder package to reserve the name for the hip project:

https://github.com/python-trio/hip

For more details see:

https://github.com/python-trio/hip/issues/168

If you have any questions, please get in touch with us!
22 changes: 22 additions & 0 deletions setup.py
@@ -0,0 +1,22 @@
import sys
import os
import setuptools

with open("README.md", "r", encoding="utf-8") as f:
MESSAGE = f.read()

if "HACKY_OVERRIDE_TO_BUILD_SDIST" not in os.environ:
sys.stderr.write(MESSAGE)
sys.exit(1)

setuptools.setup(
name="ahip",
version="0.0.1",
description="A placeholder package for the hip project",
long_description=MESSAGE,
author="Nathaniel J. Smith",
author_email="njs@pobox.com",
url="https://github.com/python-trio/hip",
license="MIT -or- Apache License 2.0",
python_requires=">=3.5",
)

0 comments on commit a0085fd

Please sign in to comment.