forked from brendanarnold/py-fortranformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup
HERE = os.path.dirname(os.path.abspath(__file__))
README = ''
with open(HERE + '/README.md') as fh:
README = fh.read()
setup(
name='fortranformat',
packages=['fortranformat'],
version='1.2.2',
description='Mimics Fortran textual IO in Python',
author='Brendan Arnold',
author_email='[email protected]',
url='https://github.com/brendanarnold/py-fortranformat',
keywords=['fortran', 'io', 'interface', 'format'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Fortran',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: General',
'Topic :: Software Development :: Interpreters',
'Topic :: Scientific/Engineering',
],
long_description=README,
long_description_content_type="text/markdown"
)