-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
31 lines (30 loc) · 989 Bytes
/
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
#!/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
setup(
name='unicards',
version='0.6',
description="Convert strings into unicode playing cards",
author='Luke Macken',
author_email='[email protected]',
url='http://github.com/lmacken/unicards',
license='ASL 2.0',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: Apache Software License",
],
keywords='python unicode cards poker deck',
packages=find_packages(exclude=['ez_setup', 'tests']),
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
scripts=['scripts/unicards'],
zip_safe=True,
install_requires=[],
)