-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (33 loc) · 1.2 KB
/
setup.py
File metadata and controls
executable file
·36 lines (33 loc) · 1.2 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
36
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from bbcondeparser import __version__
readme_fname = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme_fname, 'rb') as fandle:
long_desc = fandle.read().decode('utf-8')
setup(
name='bbcondeparser',
version=__version__,
author='Conde Nast Digital UK',
author_email='condenet.technical@condenast.co.uk',
description="parser for Conde Nast BBCode",
long_description=long_desc,
packages=find_packages(),
install_requires=[],
tests_require=['mock'],
url="https://github.com/cnduk/bbcondeparser",
download_url="https://github.com/cnduk/bbcondeparser/tarball/v{}".format(__version__),
keywords=["bbcode"],
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Text Processing :: Markup",
],
)