Skip to content

Commit

Permalink
Cleanup #25 before merge:
Browse files Browse the repository at this point in the history
- deleted unused README.md and updated MANIFEST.in to include README.rst
- don't commit to version scheme just yet
- README opening: utf-8 + relative path magic
- description without "A"
  • Loading branch information
kuba committed Dec 6, 2015
1 parent 1dfc286 commit e2fb122
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 81 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include README.md
include README.rst
include CONTRIBUTING.md
include LICENSE.txt
76 changes: 0 additions & 76 deletions README.md

This file was deleted.

12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import codecs
import os
import sys
import setuptools


here = os.path.abspath(os.path.dirname(__file__))
readme = codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
version = '0' # set static for now

install_requires = [
'acme==0.1.0',
'cryptography',
Expand All @@ -25,15 +31,13 @@
'pylint',
]

version = '0.0.1' # set static for now

setuptools.setup(
name='simp_le',
version=version,
author='Jakub Warmuz',
author_email='jakub@warmuz.org',
description="A Simple Let's Encrypt client",
long_description=open('README.rst').read(),
description="Simple Let's Encrypt Client",
long_description=readme,
license='GPLv3',
url='https://github.com/kuba/simp_le',
py_modules=['simp_le'],
Expand Down

0 comments on commit e2fb122

Please sign in to comment.