forked from daniilr/python-lj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 689 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(
name='lj',
packages=['lj'],
version='0.2',
description='Python realization of LiveJournal (LJ) API.'
'Checkout https://github.com/daniilr/python-lj for more info',
long_description=open('DESCRIPTION.rst').read(),
licence='The BSD 3-Clause License',
author='Original developer: David Lynch; Curent maintainer: Daniil Ryzhkov ',
author_email='i@daniil-r.ru',
url='https://github.com/daniilr/python-lj',
download_url='https://github.com/daniilr/python-lj/tarball/0.2',
keywords=['livejournal', 'blog', 'writing'],
classifiers=[],
platforms='osx, posix, linux, windows',
)