Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ishepard committed Dec 17, 2019
1 parent 54bb915 commit 97dd5e9
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,20 @@ def read_reqs(filename: str):


# Get the long description from the relevant file
long_description = 'PyDriller is a Python framework that helps developers on mining software repositories. ' \
'With PyDriller' \
' you can easily extract information from any Git repository, such as commits, developers, ' \
'modifications, diffs, and source codes, and quickly export CSV files.'
long_description = 'PyDriller is a Python framework that helps developers on ' \
'mining software repositories. With PyDriller' \
' you can easily extract information from any Git ' \
'repository, such as commits, developers, ' \
'modifications, diffs, and source codes, and ' \
'quickly export CSV files.'

setup(
name='PyDriller',
description='Framework for MSR',
long_description = long_description,
long_description=long_description,
author='Davide Spadini',
author_email='spadini.davide@gmail.com',
version='1.9.2',
version='1.10',
packages=find_packages('.'),
url='https://github.com/ishepard/pydriller',
license='Apache License',
Expand All @@ -40,15 +42,15 @@ def read_reqs(filename: str):
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
"Operating System :: OS Independent",
"Operating System :: POSIX",
Expand Down

0 comments on commit 97dd5e9

Please sign in to comment.