-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 839 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 839 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('requirements/test.txt') as f:
test_requirements = f.read().splitlines()
setup(
author='Mitchell Lisle',
author_email='mitchell.lisle@thoughtworks.com',
description='Database Reconstruction Attacks',
install_requires=requirements,
include_package_data=True,
keywords='dra',
name='dra',
packages=find_packages('src'),
package_dir={'': 'src'},
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/mitch-tw/dra',
version='0.2.0',
zip_safe=False,
entry_points={
'console_scripts': [
'dra=dra.__main__:main',
],
},
)