forked from Chennaipy/libcipher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup
def readme():
return open("README.rst").read()
setup(name='libcipher',
version='0.1.0',
description=("Python package containing cipher functions"
"from the book 'Hacking Secret Ciphers with Python'."),
long_description=readme(),
author='Vijay Kumar B.',
author_email='[email protected]',
url='http://github.com/chennaipy/libcipher',
license="BSD 2-Clause",
packages=['libcipher'],
test_suite="tests",
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Games/Entertainment :: Puzzle Games',
])