Skip to content

Commit

Permalink
Merge pull request #224 from Matoking/packaging_fixes
Browse files Browse the repository at this point in the history
Exclude 'tests' from package and remove remaining 'six' references
  • Loading branch information
bitsgalore committed Jan 26, 2024
2 parents a05a985 + ea0165c commit 9386a22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def find_version(*file_paths):

INSTALL_REQUIRES = [
'setuptools',
'six; python_version < "3.0.0"'
]

PYTHON_REQUIRES = '>=3.2, <4'
Expand All @@ -42,7 +41,7 @@ def find_version(*file_paths):
README.close()

setup(name='jpylyzer',
packages=find_packages(),
packages=find_packages(exclude=['tests*']),
version=find_version('jpylyzer', 'jpylyzer.py'),
license='LGPL',
install_requires=INSTALL_REQUIRES,
Expand Down

0 comments on commit 9386a22

Please sign in to comment.