Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
Updated Packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Vince Forgione committed May 1, 2017
1 parent ae25efa commit e1c3da7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ docs/build
# testing
.cache
.coverage

# packaging
dist
build
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
import codecs
import os
from setuptools import setup
from setuptools import find_packages, setup


# semantic versioning
VERSION = '0.1.0'
VERSION = '0.1.1'


here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, 'README.rst'), encoding='utf8') as fh:
long_description = fh.read()

with codecs.open(os.path.join(here, 'requirements.txt'), encoding='utf8') as fh:
dev_reqs = [line for line in fh]


setup(
name='logging2',
Expand All @@ -40,8 +37,5 @@
'Programming Language :: Python :: 3.6',
],
keywords='logging',
packages=['logging2'],
extras_require={
'dev': dev_reqs,
}
packages=find_packages(where='.', exclude=['tests', 'docs'])
)

0 comments on commit e1c3da7

Please sign in to comment.