-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 875 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 875 Bytes
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
# -*- coding: utf-8; -*-
# from distutils.core import setup
from setuptools import setup, find_packages
setup(name='simplefmf',
description="An easy way to write 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 write it.""",
version='0.1.1',
author="Rolf Würdemann",
author_email="Rolf.Wuerdemann@fmf.uni-freiburg.de",
maintainer="Rolf Würdemann",
maintainer_email="Rolf.Wuerdemann@fmf.uni-freiburg.de",
license = "BSD",
url="http://arxiv.org/abs/0904.1299",
py_modules=['simplefmf'],
packages = find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
],
zip_safe=True,
)