Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Apr 8, 2018
1 parent 2910c14 commit 0bf6f43
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from setuptools import setup

setup(
name="my_package",
name="xresloader-docs",
# (...)
install_requires=[
'pip >= 9.0.3',
'setuptools >= 39.0.1'],
install_requires=[],
extras_require={
'tests': [],
'docs': [
'sphinx >= 1.7.2']}
'pip >= 9.0.3',
'setuptools >= 39.0.1',
'sphinx >= 1.7.2']
}
)

0 comments on commit 0bf6f43

Please sign in to comment.