-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
45 lines (42 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(name='pr0ntools',
version='1.0',
comment='Integrated circuit reverse engineering research and development',
description='Integrated circuit reverse engineering research and development',
long_description = long_description,
package_dir={
'pr0ntools': 'lib/pr0ntools',
'pr0ntools.image': 'lib/pr0ntools/image',
'pr0ntools.jssim': 'lib/pr0ntools/jssim',
'pr0ntools.jssim.cif': 'lib/pr0ntools/jssim/cif',
'pr0ntools.jssim.files': 'lib/pr0ntools/jssim/files',
'pr0ntools.stitch': 'lib/pr0ntools/stitch',
'pr0ntools.stitch.pto': 'lib/pr0ntools/stitch/pto',
'pr0ntools.tile': 'lib/pr0ntools/tile',
},
packages=[
'pr0ntools',
'pr0ntools.image',
'pr0ntools.jssim',
'pr0ntools.jssim.cif',
'pr0ntools.jssim.files',
'pr0ntools.stitch',
'pr0ntools.stitch.pto',
'pr0ntools.tile',
],
scripts=[
'stitch/pr0nhugin.py',
'stitch/pr0nmap.py',
'stitch/pr0npto.py',
'stitch/pr0nstitchaj.py',
'stitch/pr0nstitch.py',
'stitch/pr0ntile.py',
'stitch/pr0nts.py',
'stitch/pr0nauto',
],
author='John McMaster',
author_email='JohnDMcMaster@gmail.com',
url='https://github.com/JohnDMcMaster/pr0ntools/',
)