|
1 | 1 | #!/usr/bin/env python |
2 | | - |
3 | 2 | from setuptools import setup |
| 3 | +from codecs import open |
| 4 | +from os import path |
| 5 | + |
| 6 | +here = path.abspath(path.dirname(__file__)) |
| 7 | +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
| 8 | + long_description = f.read() |
4 | 9 |
|
5 | 10 | setup(name='fprettify', |
6 | | - version='0.3', |
| 11 | + version='0.3.1', |
7 | 12 | description='auto-formatter for modern fortran source code', |
8 | | - author='Patrick Seewald, Ole Schuett, Tiziano Mueller, Mohamed Fawzi', |
| 13 | + long_description=long_description, |
| 14 | + author='Patrick Seewald', |
| 15 | + author_email='patrick.seewald@gmail.com', |
9 | 16 | license='GPLv3', |
10 | 17 | entry_points={'console_scripts': ['fprettify = fprettify:run']}, |
11 | 18 | packages=['fprettify'], |
12 | 19 | test_suite='fprettify.tests', |
| 20 | + install_requires=['future'], |
| 21 | + keywords='fortran format formatting auto-formatter indent', |
| 22 | + url='https://github.com/pseewald/fprettify', |
| 23 | + download_url= 'https://github.com/pseewald/fprettify/archive/v0.3.1.tar.gz', |
| 24 | + classifiers=[ |
| 25 | + 'Development Status :: 5 - Production/Stable', |
| 26 | + 'Intended Audience :: Developers', |
| 27 | + 'Topic :: Software Development :: Quality Assurance', |
| 28 | + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
| 29 | + 'Programming Language :: Python :: 2', |
| 30 | + 'Programming Language :: Python :: 2.7', |
| 31 | + 'Programming Language :: Python :: 3', |
| 32 | + 'Programming Language :: Python :: 3.4', |
| 33 | + 'Programming Language :: Python :: 3.5', |
| 34 | + 'Environment :: Console', |
| 35 | + 'Operating System :: OS Independent', |
| 36 | + ] |
13 | 37 | ) |
0 commit comments