-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (37 loc) · 1.27 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
37
38
39
40
41
42
43
"""A tiny python command line browser for sterkinekor."""
from setuptools import setup, find_packages
from codecs import open
from os import path
from sterpy import *
here = path.abspath(path.dirname(__file__))
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name='ster-py',
version=sterpy.__VERSION__,
description='A python cli based sterkinekor browser, whatever, it needed to be done.',
long_description=read_md('README.md'),
url='https://github.com/spookyUnknownUser/ster-py',
author='spookyUnknownUser',
author_email='spookyUnknownUser@users.noreply.github.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='cli command python sterkinekor browser',
packages=find_packages(),
install_requires=['click', 'omdb', 'colorama', 'requests'],
entry_points={
'console_scripts': [
'ster-py=sterpy:main',
],
},
)