2015-07-05 20:24:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-07-05 20:47:25 +00:00
|
|
|
|
2015-07-05 20:24:08 +00:00
|
|
|
setup(
|
|
|
|
name='Social-Federation',
|
|
|
|
version='0.1.0',
|
|
|
|
description='Python library for abstracting social federation protocols',
|
|
|
|
author='Jason Robinson',
|
|
|
|
author_email='mail@jasonrobinson.me',
|
|
|
|
url='https://github.com/jaywink/social-federation',
|
|
|
|
packages=find_packages(exclude=["*.tests.*", "*.tests"]),
|
|
|
|
license="BSD 3-clause",
|
|
|
|
install_requires=[
|
2015-07-08 08:57:33 +00:00
|
|
|
"dirty-validators==0.3.2",
|
|
|
|
"lxml==3.4.4",
|
|
|
|
"pycrypto==2.6.1",
|
|
|
|
"python-dateutil==2.4.2",
|
2015-07-11 22:23:11 +00:00
|
|
|
"python-xrd==0.1",
|
2015-07-08 08:57:33 +00:00
|
|
|
],
|
|
|
|
test_require=[
|
2015-07-16 20:01:10 +00:00
|
|
|
"jsonschema==2.5.1",
|
2015-07-08 08:57:33 +00:00
|
|
|
"pytest==2.7.2",
|
|
|
|
],
|
2015-07-12 19:19:40 +00:00
|
|
|
include_package_data=True,
|
2015-07-05 20:24:08 +00:00
|
|
|
)
|