Skip to content

Commit

Permalink
prepare pypi release
Browse files Browse the repository at this point in the history
  • Loading branch information
l-kotzur committed May 22, 2018
1 parent f278445 commit de04656
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,37 @@
dir_path = os.path.dirname(os.path.realpath(__file__))
with open( os.path.join(dir_path,'requirements.txt') ) as f:
required_packages = f.read().splitlines()
with open(os.path.join(dir_path,'README.md'), "r") as fh:
long_description = fh.read()

setuptools.setup(
name='tsam',
version='0.9.5',
version='0.9.6',
author='Leander Kotzur',
url='',
include_package_data=True, # includes all files in sdist that are tracked in git, additionall using the MANIFEST.in to exclude some of them
author_email='l.kotzur@fz-juelich.de',
description='Time series aggregation module (tsam) to create typical periods',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/FZJ-IEK3-VSA/tsam',
include_package_data=True,
packages = setuptools.find_packages(),
py_modules = [],
install_requires = required_packages,
setup_requires = ['setuptools-git']
setup_requires = ['setuptools-git'],
classifiers=[
'Development Status :: 0.9 - Prerelase',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules' ],
keywords=['clustering', 'optimization'],
)

0 comments on commit de04656

Please sign in to comment.