-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 737 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 737 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='pycipher',
version='0.5.1',
description='Several simple cipher algorithms',
author='James Lyons',
author_email='james.lyons0@gmail.com',
packages=find_packages(exclude=['tests','tests.*']),
include_package_data=True, # declarations in MANIFEST.in
url='https://github.com/jameslyons/pycipher',
test_suite='tests',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
long_description=open('README.rst', 'rt').read()
)