-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.23 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.23 KB
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
#!/usr/bin/env python2
try:
from setuptools import setup
import os
except ImportError:
from distutils.core import setup
from classical_cipher import version
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='classical_cipher',
version=version.__version__,
description='Some script for classcial cipher like Caesar, Vigenere, Playfair, etc.',
long_description=read('README.md'),
url='https://github.com/lzutao/classical_cipher',
author='Lzu Tao',
author_email='taolzu@gmail.com',
packages=['classical_cipher'], # same as @name
keywords="python2 python2.7 classical-cipher",
license='MIT',
test_suite='tests',
zip_safe=False,
platforms=['any'],
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: Console',
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
)