-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (28 loc) · 1.05 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
34
35
# -*- coding: utf-8 -*-
"""
The setup script is the centre of all activity in building, distributing, and installing modules.
"""
from __future__ import absolute_import
from setuptools import setup, find_packages
def readme():
"""
Return README content.
:return: The specified number of bytes from the file
"""
with open('README.md') as filepointer:
return filepointer.read()
setup(name='untraceables',
version='1.5.2',
author='Mischa ter Smitten',
author_email='[email protected]',
maintainer='Mischa ter Smitten',
maintainer_email='[email protected]',
url='https://www.oefenweb.nl/',
download_url='https://github.com/Oefenweb/python-untraceables',
license='MIT',
description='Randomizes IDs for a given set of tables making them untraceable across environments',
long_description=readme(),
packages=find_packages(exclude=['test']),
scripts=['bin/randomize-ids'],
data_files=[('config', ['untraceables.cfg.default'])],
platforms=['GNU/Linux'])