-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·33 lines (30 loc) · 1.45 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "0.12"
DESCRIPTION = 'A combat simulator'
LONG_DESCRIPTION = open('README.txt').read()
setup(name = 'CombatWiz' ,
version = version ,
description = DESCRIPTION ,
long_description = LONG_DESCRIPTION ,
author = 'Ben Farmer, Ken Farmer',
author_email = '[email protected]',
url = 'http://github.com/kenfar/CombatSim',
license = 'BSD' ,
classifiers=[
'Development Status :: 3 - Alpha' ,
'Environment :: Console' ,
'License :: OSI Approved :: BSD License' ,
'Programming Language :: Python' ,
'Operating System :: POSIX' ,
'Topic :: Games/Entertainment :: Role-Playing' ,
'Topic :: Games/Entertainment :: Simulation'
],
download_url = 'http://github.com/downloads/kenfar/CombatWiz/CombatWiz-%s.tar.gz' % version,
scripts = ['scripts/combatwiz_runner.py'],
install_requires = ['appdirs >= 1.1.0' ,
'pytester' ,
'tox' ,
'unittest2' ],
packages = find_packages(),
)