Skip to content

Commit

Permalink
Adjust setup.py for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
tillbiskup committed Jun 14, 2019
1 parent c534547 commit 6bb7e2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

# Setuptools distribution folder.
/dist/
/build/

/*.egg-info
/*.egg
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0.dev9
0.1.0.dev10
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()

with open(os.path.join(os.path.dirname(__file__), 'LICENSE')) as f:
license_ = f.read()


setuptools.setup(
name='LabInform',
version=version,
Expand All @@ -24,7 +20,6 @@
'Documentation': 'https://docs.labinform.de/',
'Source': 'https://github.com/tillbiskup/labinform',
},
license=license_,
packages=setuptools.find_packages(exclude=('tests', 'docs')),
keywords=[
'Reproducible research',
Expand All @@ -44,5 +39,5 @@
],
install_requires=[
],
python_requires='>=3',
python_requires='>=3.5',
)

0 comments on commit 6bb7e2f

Please sign in to comment.