Skip to content

Commit

Permalink
update setup files, flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jul 21, 2018
1 parent ac6f2b5 commit 0b62d8d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include AUTHORS CHANGES README.md LICENCE
include AUTHORS CHANGES README.md LICENCE VERSION
recursive-include edc_prn/templates *
4 changes: 0 additions & 4 deletions README.md

This file was deleted.

17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
|pypi| |travis| |coverage|


edc-prn
-------

Classes and utils to support PRN forms


.. |pypi| image:: https://img.shields.io/pypi/v/edc-prn.svg
:target: https://pypi.python.org/pypi/edc-prn

.. |travis| image:: https://travis-ci.org/clinicedc/edc-prn.svg?branch=develop
:target: https://travis-ci.org/clinicedc/edc-prn

.. |coverage| image:: https://coveralls.io/repos/github/clinicedc/edc-prn/badge.svg?branch=develop
:target: https://coveralls.io/github/clinicedc/edc-prn?branch=develop
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.1
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@
from setuptools import setup
from setuptools import find_packages

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()

with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as f:
VERSION = f.read()

# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='edc-prn',
version='0.1.1',
version=VERSION,
author=u'Erik van Widenfelt',
author_email='ew2789@gmail.com',
packages=find_packages(),
Expand All @@ -26,9 +29,11 @@
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
Expand Down

0 comments on commit 0b62d8d

Please sign in to comment.