-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 830 Bytes
/
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
from setuptools import setup
with open('README.md', 'r') as fp:
long_description = fp.read()
setup(
name='fortio',
version='0.4',
description='A Python IO for Fortran unformatted binary files with variable-length records.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/syrte/fortio/',
keywords=['Fortran', 'Numpy'],
author='Syrtis Major',
author_email='[email protected]',
py_modules=['fortio'],
install_requires=['numpy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)