-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 756 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 756 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
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup, find_packages
import sys
BASE_DIR = os.path.dirname(__file__)
sys.path.append(os.path.join(BASE_DIR, 'shecodes_ciphers'))
install_require = [
]
test_require = [
# Testing
'pytest==2.7.2',
'pytest-cache==1.0',
# Code quality
'flake8==2.4.1',
'radon==1.2.2',
]
setup(
name="shecodes-ciphers",
version="0.0.1",
author="Ben Emery",
author_email="willcodefortea@gmail.com",
description="Simple examples of a few ciphers.",
url="https://github.com/willcodefortea/shecodes-ciphers",
package_dir={'': 'shecodes_ciphers'},
packages=find_packages('shecodes_ciphers'),
install_requires=install_require,
extras_require={
'tests': test_require
}
)