-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.11 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
# -*- encoding: utf-8 -*-
"""
"""
__author__ = 'Martin Martimeo <martin@martimeo.de>'
__date__ = '02.07.14 - 16:53'
from distutils.core import setup
setup(
name='bb2md',
version='0.0.1',
author='Martin Martimeo',
author_email='martin@martimeo.de',
url='https://github.com/MartinMartimeo/bb2md',
packages=['bb2md'],
license='GNU AGPLv3+ or BSD-3-clause',
platforms='any',
description='convert bbcode to markdown',
long_description=open('README.md').read(),
install_requires=open('requirements.txt').readlines(),
download_url='http://pypi.python.org/pypi/bb2md',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)