Skip to content

Commit

Permalink
Merge pull request #24 from hackebrot/use-src-dir
Browse files Browse the repository at this point in the history
Update project to use src directory
  • Loading branch information
hackebrot authored Jul 13, 2019
2 parents 6448467 + fe8dba7 commit ac60c85
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
import codecs
import os

from setuptools import setup
import setuptools


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()


setup(
setuptools.setup(
name='poyo',
version='0.5.0',
author='Raphael Pierzina',
Expand All @@ -23,10 +23,8 @@ def read(fname):
url='https://github.com/hackebrot/poyo',
description='A lightweight YAML Parser for Python',
long_description=read('README.rst'),
packages=[
'poyo',
],
package_dir={'poyo': 'poyo'},
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=[],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ac60c85

Please # to comment.