Skip to content

Commit

Permalink
Use 'find_packages' from setuptools in order to locate relevant subpa…
Browse files Browse the repository at this point in the history
…ckages.
  • Loading branch information
mansenfranzen committed Jul 7, 2017
1 parent 067b7a9 commit c4d50be
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

import sys
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand


Expand Down Expand Up @@ -42,12 +42,7 @@ def run_tests(self):
author="Franz Woellert",
author_email='franz.woellert@gmail.com',
url='https://github.com/mansenfranzen/tssim',
packages=[
'tssim',
],
package_dir={'tssim':
'tssim'},
include_package_data=True,
packages=find_packages(),
install_requires=requirements,
license="MIT license",
zip_safe=False,
Expand Down

0 comments on commit c4d50be

Please sign in to comment.