Skip to content

Commit

Permalink
Prep for 0.01 release
Browse files Browse the repository at this point in the history
  • Loading branch information
harens committed Jan 19, 2019
1 parent 181e85a commit f2ba442
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: python
python:
- "3.0"
- "3.4"
- "3.5"
- "3.6"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# checkdigit
Testing testy tests with tests
Checking digits with a digit!

## Installation
```shell
Expand All @@ -8,4 +8,4 @@ pip install checkdigit
Or download the project [here](https://github.com/harens/checkdigit/archive/master.zip)

## License
This project is licensed under the [GNU General Public License v3.0](https://github.com/harens/checkdigit/master/LICENSE)
This project is licensed under the [GNU General Public License v3.0](https://github.com/harens/checkdigit/master/LICENSE)
3 changes: 2 additions & 1 deletion checkdigit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /usr/bin/env python

# This file is part of checkdigit.

# checkdigit is free software: you can redistribute it and/or modify
Expand All @@ -11,5 +13,4 @@
# You should have received a copy of the GNU General Public License
# along with checkdigit. If not, see <http://www.gnu.org/licenses/>.

__version__ = "0.0.1"
from checkdigit.isbn import *
2 changes: 2 additions & 0 deletions checkdigit/isbn.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /usr/bin/env python

# This file is part of checkdigit.

# checkdigit is free software: you can redistribute it and/or modify
Expand Down
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,31 @@
setup(
name="checkdigit",
version="0.0.1",
description="Testing testy tests with tests",
description="Checking digits with a digit!",
long_description=long_description,
long_description_content_type="text/markdown",
author="harens",
license="GPL v3",
packages=find_packages(exclude=("tests",)),
author_email="[email protected]",
url="https://harens.github.io",
download_url='https://github.com/harens/checkdigit/tarball/0.0.1',
classifiers=[
"Development Status :: 3 - Alpha",
'Operating System :: OS Independent',
'Intended Audience :: Information Technology',
'Intended Audience :: Education',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
project_urls={
'Source': 'https://github.com/harens/checkdigit',
'Tracker': 'https://github.com/harens/checkdigit/issues',
},
keywords="Check Digits, Validation, ISBN",
)

0 comments on commit f2ba442

Please sign in to comment.