-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add temp files to .gitignore * Create stub CHANGELOG.md * Switch README to .rst and flesh out stub * Add MANIFEST.in * Create stub __init__.py * Create and configure initial setup.py
- Loading branch information
Showing
8 changed files
with
96 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -99,3 +99,9 @@ ENV/ | |
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
# Editor temporary files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
|
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,12 @@ | ||
## CHANGELOG: pent - Pent Extracts Numerical Text | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
### [Unreleased] | ||
|
||
#### Features | ||
|
||
* ... |
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 @@ | ||
include LICENSE.txt README.rst CHANGELOG.md |
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,9 @@ | ||
pent | ||
==== | ||
|
||
*Pent Extracts Numerical Text* | ||
|
||
Mini-language driven parser for structured numerical data. | ||
|
||
*Development impending...* | ||
|
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,28 @@ | ||
# ---------------------------------------------------------------------------- | ||
# Name: __init__ | ||
# Purpose: Package definition module for pent | ||
# | ||
# Author: Brian Skinn | ||
# [email protected] | ||
# | ||
# Created: 14 Nov 2017 | ||
# Copyright: (c) Brian Skinn 2017 | ||
# License: The MIT License; see "LICENSE.txt" for full license terms | ||
# and contributor agreement. | ||
# | ||
# This file is part of 'pent', a package for parsing of structured | ||
# numerical text. | ||
# | ||
# http://www.github.com/bskinn/pent | ||
# | ||
# ---------------------------------------------------------------------------- | ||
|
||
|
||
"""Definition file for root of pent.""" | ||
|
||
|
||
from __future__ import absolute_import | ||
|
||
__all__ = [] | ||
|
||
__version__ = '0.0' |
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,9 @@ | ||
attrs<18 | ||
sphinx==1.6.5 | ||
sphinx_rtd_theme==0.2.4 | ||
ipython | ||
flake8 | ||
flake8-docstrings | ||
coverage | ||
tox | ||
wget |
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,31 @@ | ||
from setuptools import setup | ||
|
||
|
||
def readme(): | ||
with open('README.rst', 'r') as f: | ||
return f.read() | ||
|
||
|
||
setup( | ||
name='pent', | ||
version='0.0', | ||
packages=['pent'], | ||
url='https://www.github.com/bskinn/pent', | ||
license='MIT License', | ||
author='Brian Skinn', | ||
author_email='[email protected]', | ||
description='Pent Extracts Numerical Text', | ||
long_description=readme(), | ||
classifiers=['License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Intended Audience :: Science/Research', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'Topic :: Utilities', | ||
'Development Status :: 1 - Planning'], | ||
) |