mirror of
https://github.com/hellosteadman/bambu-buffer.git
synced 2025-05-04 08:29:50 +00:00
31 lines
830 B
Python
31 lines
830 B
Python
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
from os import path
|
|
|
|
setup(
|
|
name = 'bambu-buffer',
|
|
version = '2.1.1',
|
|
description = 'Post to Buffer and manage profile settings through a Django-powered site',
|
|
author = 'Steadman',
|
|
author_email = 'mark@steadman.io',
|
|
url = 'https://github.com/iamsteadman/bambu-buffer',
|
|
long_description = open(path.join(path.dirname(__file__), 'README')).read(),
|
|
packages = [
|
|
'bambu_buffer',
|
|
'bambu_buffer.migrations'
|
|
],
|
|
package_data = {
|
|
'bambu_buffer': [
|
|
'templates/buffer/*.html'
|
|
]
|
|
},
|
|
install_requires = [
|
|
'Django>=1.6',
|
|
'requests>=2.0'
|
|
],
|
|
classifiers = [
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django'
|
|
]
|
|
)
|