Skip to content

Commit

Permalink
Move dependencies inline.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 9, 2017
1 parent d66e96d commit ef87d9c
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,6 @@

import setuptools

install_requires=[
'six',
'jaraco.collections',
'jaraco.text',
'jaraco.itertools>=1.8',
'jaraco.logging',
'jaraco.functools>=1.5',
'jaraco.stream',
'pytz',
'more_itertools',
'tempora>=1.6',
]

with io.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()

Expand All @@ -38,7 +25,18 @@
packages=setuptools.find_packages(),
include_package_data=True,
namespace_packages=name.split('.')[:-1],
install_requires=install_requires,
install_requires=[
'six',
'jaraco.collections',
'jaraco.text',
'jaraco.itertools>=1.8',
'jaraco.logging',
'jaraco.functools>=1.5',
'jaraco.stream',
'pytz',
'more_itertools',
'tempora>=1.6',
],
extras_require={
},
setup_requires=[
Expand Down

0 comments on commit ef87d9c

Please sign in to comment.