forked from rowue/readfmf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1003 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
26
27
28
29
30
31
32
# -*- coding: utf-8; -*-
# from distutils.core import setup
from setuptools import setup, find_packages
setup(name='readfmf',
description="An easy way to read fmf files",
long_description="""The Full Meta-Data Format is specified in
http://arxiv.org/abs/0904.1299
This module gives a hackish way to read it.
Consistency against the specifications of
http://arxiv.org/abs/0904.1299 is not verfied""",
version='0.1.1',
author="unknown",
author_email="unknown@fmf.uni-freiburg.de",
maintainer="Rolf Würdemann",
maintainer_email="Rolf.Wuerdemann@fmf.uni-freiburg.de",
install_requires=['numpy',
],
license = "BSD",
url="http://arxiv.org/abs/0904.1299",
py_modules=['readfmf'],
packages = find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
],
zip_safe=True,
)