-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 859 Bytes
/
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
from distutils.core import setup
setup(
name = 'pytc',
version = '0.3.4',
py_modules = ['pytc'],
description = 'Command line Twitter client',
author = 'Bryan Kam',
author_email = '[email protected]',
url = 'http://twitter.com/pythontc',
keywords = ['twitter'],
scripts = ['pytc'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.6'
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
]
)