federation/setup.py

44 wiersze
1.3 KiB
Python
Czysty Zwykły widok Historia

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
2016-04-03 11:57:46 +00:00
description = 'Python library for abstracting social federation protocols'
2015-07-05 20:24:08 +00:00
setup(
name='Social-Federation',
2016-05-09 19:04:08 +00:00
version='0.3.2',
2016-04-03 11:57:46 +00:00
description=description,
long_description=description,
2015-07-05 20:24:08 +00:00
author='Jason Robinson',
author_email='mail@jasonrobinson.me',
2016-04-03 11:57:46 +00:00
maintainer='Jason Robinson',
maintainer_email='mail@jasonrobinson.me',
2015-07-05 20:24:08 +00:00
url='https://github.com/jaywink/social-federation',
2016-04-03 11:57:46 +00:00
download_url='https://github.com/jaywink/social-federation/releases',
packages=find_packages(),
2015-07-05 20:24:08 +00:00
license="BSD 3-clause",
install_requires=[
"dirty-validators==0.3.2",
2016-05-09 18:52:22 +00:00
"lxml>=3.4.4, <=3.6.0",
"jsonschema==2.5.1",
"pycrypto==2.6.1",
2016-05-09 18:56:23 +00:00
"python-dateutil>=2.4.2, <=2.5.3",
2015-07-11 22:23:11 +00:00
"python-xrd==0.1",
],
2015-07-12 19:19:40 +00:00
include_package_data=True,
2016-04-03 11:57:46 +00:00
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Topic :: Internet',
],
keywords='federation diaspora activitypub social',
2015-07-05 20:24:08 +00:00
)