Skip to content

Commit

Permalink
Add missing packaging information
Browse files Browse the repository at this point in the history
- Some additional metadata was needed (and python versions for
  TravisCI), added them
  • Loading branch information
oldmantaiter committed Jul 26, 2020
1 parent 495b585 commit 86be337
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install: "pip install -r requirements.txt"
script: nosetests --with-coverage --cover-package=pydkron --nocapture -vv
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
requests

## Installing

### Pip
```
pip install pydkron
```
### Manually
```
git clone https://github.com/oldmantaiter/pydkron
cd pydkron
Expand Down
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

INSTALL_REQUIRES = [
'requests',
'six'
]

setup(
Expand All @@ -23,8 +24,16 @@
author='Tait Clarridge',
author_email='tait@clarridge.ca',
url='https://github.com/oldmantaiter/pydkron',
download_url='https://github.com/oldmantaiter/pydkron/archive/'+VERSION+'.tar.gz',
license='MIT License',
packages=find_packages(exclude=['test']),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
)

0 comments on commit 86be337

Please sign in to comment.