-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 817 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
24
25
26
27
28
29
30
#!/usr/bin/python
"""Upload file contents to Pastebin."""
from pastebin import VERSION
from distutils.core import setup
setup_kwargs = dict(
name="pastebin",
version=VERSION,
description="Upload file contents to Pastebin",
author="Lasse Vang Gravesen",
author_email="[email protected]",
packages=[
"pastebin/",
],
scripts=[
"bin/pastebin",
],
long_description=" ".join(__doc__.strip().splitlines()),
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)
setup(**setup_kwargs)