-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (55 loc) · 1.92 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_packages
from distutils.core import Command
class PerformanceCommand(Command):
description = 'Runs performance metrics'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import timeit
performance = [
{
'desc': 'Aces count',
'stmt': 'performance.aces_count()',
'setup': 'import performance',
'number': 1,
'repeat': 10,
}
]
for perf in performance:
timing = timeit.repeat(perf['stmt'],
setup=perf['setup'],
number=perf['number'],
repeat=perf['repeat'])
print('{0} took {1:.4}s'.format(perf['desc'], min(timing)))
long_description = open('README.rst').read()
setup(
name='cardsource',
version='0.0.1',
description='A Python library for simulating playing card games',
long_description=long_description,
author='David Fischer',
author_email='[email protected]',
url='https://github.com/davidfischer/cardsource',
license='BSD',
platforms=['OS Independent'],
packages=[p for p in find_packages('.') if p.startswith('cardsource')],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='tests',
cmdclass={
'performance': PerformanceCommand
}
)