Skip to content

Commit

Permalink
Update setup.py for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
vtitor committed Jan 8, 2018
1 parent 6bacb7b commit e523246
Showing 1 changed file with 25 additions and 20 deletions.
45 changes: 25 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,29 @@

if __name__ == '__main__':
setup(
name = 'VerbalExpressions',
version = '0.0.1',
description = 'Make difficult regular expressions easy! Python port of the awesome VerbalExpressions repo - https://github.com/jehna/VerbalExpressions',
long_description = '''Please see https://github.com/VerbalExpressions/PythonVerbalExpressions/blob/master/README.md for more information!''',
author = "Yan Wenjun, diogobeda, Mihai Ionut Vilcu, Peder Soholt, Sameer Raghuram, Kharms",
author_email = "",
license = 'MIT',
url = 'https://github.com/VerbalExpressions/PythonVerbalExpressions',
test_suite='tests',
scripts = [],
packages = ['verbalexpressions'],
tests_require = ['six'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing'
],
zip_safe=True
name='VerbalExpressions',
version='0.0.2',
description='Make difficult regular expressions easy! Python port of the awesome VerbalExpressions repo - https://github.com/jehna/VerbalExpressions',
long_description='''Please see https://github.com/VerbalExpressions/PythonVerbalExpressions/blob/master/README.md for more information!''',
author='Victor Titor, Yan Wenjun, diogobeda, Mihai Ionut Vilcu, Peder Soholt, Sameer Raghuram, Kharms',
author_email='',
license='MIT',
url='https://github.com/VerbalExpressions/PythonVerbalExpressions',
test_suite='tests',
scripts=[],
packages=['verbalexpressions'],
tests_require=['six'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing'
],
zip_safe=True
)

0 comments on commit e523246

Please sign in to comment.