Skip to content

Commit

Permalink
making setup.py pypi friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Maahn committed May 21, 2018
1 parent 724e16d commit 05ed46c
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@

from setuptools import setup

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

if __name__ == "__main__":
setup(
name='pyOptimalEstimation',
Expand All @@ -33,13 +39,14 @@
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7"
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
install_requires = ['numpy', 'matplotlib', 'pandas' , 'scipy'],
)
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit 05ed46c

Please sign in to comment.