From 32f7fac871864ab4200e944cfb0e8ff5f3790e85 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Feb 06 2015 07:42:59 +0000 Subject: release 1.0 --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0b21097 --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +import os +from setuptools import setup, find_packages + +# Utility function to read the README file. +# Used for the long_description. It's nice, because now 1) we have a top level +# README file and 2) it's easier to type in the README file than to put a raw +# string in below. Stolen from +# https://pythonhosted.org/an_example_pypi_project/setuptools.html +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + +setup( + name = "fedfind", + version = "1.0", + author = "Adam Williamson", + author_email = "awilliam@redhat.com", + description = "Fedora Finder finds Fedora - images, more to come?", + license = "GPLv3+", + keywords = "fedora release image media iso", + url = "https://www.happyassassin.net/fedfind/", + packages = ["fedfind"], + scripts = ['scripts/fedfind'], + install_requires = ['subprocess32', 'setuptools'], + long_description=read('README.md'), + classifiers=[ + "Development Status :: 3 - Alpha", + "Topic :: Utilities", + "License :: OSI Approved :: GNU General Public License v3 or later " + "(GPLv3+)", + ], +)