-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 691 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import pastebin_python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name=pastebin_python.__app_name__,
version=pastebin_python.__version__,
description=pastebin_python.__description__,
author=pastebin_python.__author__,
author_email=pastebin_python.__author_email__,
packages=['pastebin_python'],
url=pastebin_python.__app_url__,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'License :: Freeware',
),
download_url=pastebin_python.__download_url__,
)