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