Skip to content

Commit a1f7387

Browse files
committed
Prepare for the first release
1 parent d6a716b commit a1f7387

File tree

7 files changed

+273
-12
lines changed

7 files changed

+273
-12
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
__pycache__
1+
*.egg-info/
2+
__pycache__/
3+
build/
4+
dist/

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Dwayne Crooks
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include CHANGELOG.md LICENSE.txt README.rst

Pipfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ name = "pypi"
55

66
[packages]
77
lark-parser = "*"
8+
"e1839a8" = {editable = true, path = "."}
89

910
[dev-packages]
1011
ipython = "*"
12+
setuptools = "*"
13+
wheel = "*"
14+
twine = "*"
1115

1216
[requires]
1317
python_version = "3.7"

Pipfile.lock

Lines changed: 210 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[metadata]
2+
name = herbert-python
3+
version = attr: herbert.__version__
4+
description = A CLI version of the Herbert game from Imagine Cup.
5+
long_description = file: README.rst
6+
url = https://github.com/dwayne/herbert-python
7+
author = Dwayne Crooks
8+
author_email = [email protected]
9+
license = MIT
10+
classifiers =
11+
Development Status :: 3 - Alpha
12+
Environment :: Console
13+
Intended Audience :: Developers
14+
License :: OSI Approved :: MIT License
15+
Operating System :: POSIX :: Linux
16+
Programming Language :: Python
17+
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: Implementation :: CPython
19+
keywords = herbert, imaginecup, game
20+
21+
[options]
22+
packages = herbert

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from setuptools import setup
2+
3+
4+
setup(
5+
install_requires=['lark-parser==0.6.4'],
6+
entry_points={
7+
'console_scripts': [
8+
'herbert=herbert.cli:main'
9+
]
10+
}
11+
)

0 commit comments

Comments
 (0)