add stuff for packaging

pull/9/head
Jeremy Carbaugh 2012-04-04 18:19:42 -04:00
rodzic 8bfd9b8287
commit adc391d8a9
2 zmienionych plików z 29 dodań i 0 usunięć

3
MANIFEST.in 100644
Wyświetl plik

@ -0,0 +1,3 @@
include LICENSE
include README.rst
include requirements.txt

26
setup.py 100644
Wyświetl plik

@ -0,0 +1,26 @@
from distutils.core import setup
from pywebfinger import __version__
long_description = open('README.rst').read()
setup(name="python-webfinger",
version=str(__version__),
py_modules=["pywebfinger"],
description="Simple Python implementation of webfinger client protocol",
author="Jeremy Carbaugh",
author_email = "jcarbaugh@gmail.com",
license='BSD',
url="http://github.com/jcarbaugh/python-webfinger/",
long_description=long_description,
install_requires=["python-xrd"],
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)