Skip to content

Commit

Permalink
Fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mschroering committed Jul 23, 2018
1 parent 173d5fa commit f6fd599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os.path

try:
from setuptools import setup
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup

Expand All @@ -29,7 +29,7 @@ def read(filename):
url='https://github.com/counsyl/hgvs/',
description='HGVS name parsing and formatting',
long_description=read('README.md'),
py_modules=('pyhgvs', 'pyhgvs.tests'),
packages=find_packages(),
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=requires,
tests_require=test_requires,
Expand Down

0 comments on commit f6fd599

Please sign in to comment.