-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 loc) · 1.28 KB
/
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
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
version = '0.2.2.dev0'
setup(name='fakechroot',
version=version,
url="http://github.com/yaybu/fakechroot",
description="A fixture for using a fakechroot environment in your tests",
long_description=open("README.rst").read(),
author="John Carr",
author_email="[email protected]",
license="Apache Software License",
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'six',
],
extras_require = {
'test': ['unittest2', 'discover'],
},
)