-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 893 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 893 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
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
from altered import meta
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name=meta.name,
version=meta.version,
description='Python monkey patching for humans.',
long_description=(meta.long_description + '\n\n' +
open('CHANGES.rst').read()),
packages=('altered',),
url=meta.url,
author=meta.author,
author_email=meta.author_email,
install_requires=(
'future>=0.16.0',
),
license='ISC',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
],
)