-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.58 KB
/
setup.py
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
44
45
46
47
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup, find_packages
# Convert description from markdown to reStructuredText
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = ''
setup(
name='twitter-banner-switcher',
url='https://github.com/Pythonity/twitter-banner-switcher',
download_url='https://github.com/Pythonity/twitter-banner-switcher/releases/latest',
bugtrack_url='https://github.com/Pythonity/twitter-banner-switcher/issues',
version='0.1.0',
license='MIT License',
author='Pythonity',
author_email='[email protected]',
maintainer='Paweł Adamczak',
maintainer_email='[email protected]',
description="Python script that sets your Twitter profile banner to a "
"random image from a specified folder or a list of paths.",
long_description=description,
packages=find_packages(),
include_package_data=True,
install_requires=[
'click>=6.6',
'PyYAML>=3.11',
'tweepy>=3.5.0',
],
scripts=['bin/twitter-banner-switcher'],
keywords='twitter banner',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
],
)