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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import os, sys, codecs
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = codecs.open(os.path.join(here, 'README.txt'), encoding='utf8').read()
CHANGES = codecs.open(os.path.join(here, 'CHANGES.txt'), encoding='utf8').read()
signature_reqs = ['keyring']
if sys.platform != 'win32':
signature_reqs.append('dirspec')
setup(name='wheel',
version='0.12.0',
description='A built-package format for Python.',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
],
author='Daniel Holth',
author_email='dholth@fastmail.fm',
url='http://bitbucket.org/dholth/wheel/',
keywords='wheel packaging',
license='MIT',
packages=[
'wheel',
'wheel.test',
'wheel.tool',
'wheel.signatures',
'wheel.pkg_resources'
],
extras_require={
'signatures': signature_reqs,
'faster-signatures': ['ed25519ll'],
'tool': []
},
include_package_data=True,
zip_safe=False,
test_suite = 'nose.collector',
entry_points = open(os.path.join(here, 'entry_points.txt')).read()
)
|