File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ from setuptools import setup
2
+
3
+ setup (
4
+ name = 'twitter-text-python' ,
5
+ version = '1.0' ,
6
+ description = 'Tweet parser and formatter' ,
7
+ long_description = open ('README.rst' ).read (),
8
+ author = 'Ivo Wetzel' ,
9
+ author_email = '' ,
10
+ url = 'http://github.com/abuchanan/twitter-text-python' ,
11
+ license = 'GPL' ,
12
+ packages = ['ttp' ],
13
+ include_package_data = True ,
14
+ zip_safe = False ,
15
+ install_requires = [],
16
+ classifiers = [
17
+ 'Environment :: Web Environment' ,
18
+ # I don't know what exactly this means, but why not?
19
+ 'Intended Audience :: Developers' ,
20
+ 'License :: OSI Approved :: BSD License' ,
21
+ 'Operating System :: OS Independent' ,
22
+ 'Programming Language :: Python' ,
23
+ 'Topic :: Software Development :: Libraries :: Python Modules' ,
24
+ ]
25
+ )
You can’t perform that action at this time.
0 commit comments