-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.15 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='ptwit',
version='0.3',
description='A simple twitter command line client',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities'],
url='https://github.com/ptpt/ptwit',
author='Tao Peng',
author_email='[email protected]',
keywords='twitter, command-line, client',
license='MIT',
py_modules=['ptwit'],
install_requires=['python-twitter', 'click-default-group', 'click'],
entry_points='''
[console_scripts]
ptwit=ptwit:cli
''',
zip_safe=False)